diff --git a/include/abstract_types_context.hpp b/include/abstract_types_contexts.hpp similarity index 100% rename from include/abstract_types_context.hpp rename to include/abstract_types_contexts.hpp diff --git a/include/build_visitor.hpp b/include/build_visitor.hpp index 05030b8..f9b2ebd 100644 --- a/include/build_visitor.hpp +++ b/include/build_visitor.hpp @@ -76,6 +76,7 @@ private: void Visit(BinaryOperatorExpression* node) override; void Visit(UnaryOperatorExpression* node) override; void Visit(ReferenceExpression* node) override; + void Visit(AccessExpression* node) override; // Other expressions @@ -139,8 +140,6 @@ private: void Visit(CharLiteral* node) override; void Visit(Literal& node) override; // variant - - void Visit(NameSubExpression& node) override; // variant private: const parser::ParseTree& parse_tree_; parser::ParseTree::Node current_node_; diff --git a/include/find_symbols_visitor.hpp b/include/find_symbols_visitor.hpp index 8f33261..46f3523 100644 --- a/include/find_symbols_visitor.hpp +++ b/include/find_symbols_visitor.hpp @@ -63,6 +63,7 @@ private: // // void Visit(BinaryOperatorExpression* node) override; // // void Visit(UnaryOperatorExpression* node) override; // // void Visit(ReferenceExpression* node) override; + // // void Visit(AccessExpression* node) override; // Simple Expressions diff --git a/include/interpreter_tree.hpp b/include/interpreter_tree.hpp index dd5fcaf..96c9a3b 100644 --- a/include/interpreter_tree.hpp +++ b/include/interpreter_tree.hpp @@ -8,6 +8,7 @@ // for clangd #include "utils.hpp" +#include "types_info.hpp" namespace interpreter::tokens { @@ -87,12 +88,26 @@ using FlowControl = std::variant< struct Block; +struct FloatNumberLiteral; +struct NumberLiteral; +struct StringLiteral; +struct CharLiteral; + +using Literal = std::variant< + std::unique_ptr, + std::unique_ptr, + std::unique_ptr, + std::unique_ptr>; + // struct NameExpression; struct ScopedStatement; +struct AccessExpression; using SubExpressionToken = std::variant< std::unique_ptr, - std::unique_ptr>; + std::unique_ptr, + std::unique_ptr, + std::unique_ptr>; // struct FunctionCallExpression; struct BinaryOperatorExpression; @@ -224,29 +239,6 @@ struct ExtendedName { std::string name; }; -struct FloatNumberLiteral; -struct NumberLiteral; -struct StringLiteral; -struct CharLiteral; - -using Literal = std::variant< - std::unique_ptr, - std::unique_ptr, - std::unique_ptr, - std::unique_ptr>; - -// - -using NameSubExpression = std::variant< - std::unique_ptr, - std::unique_ptr, - std::unique_ptr>; - -enum class ReferenceType { - Reference, - UniqueReference, -}; - //////////////////////////////////////////////////////////////////////////////////////////// // ----------------- Sources ----------------- @@ -267,6 +259,9 @@ struct Namespace { std::optional name; TypeIdentifier type; std::unique_ptr scope; + + std::optional type_id_; + std::optional variable_type_; }; struct Partition { @@ -323,6 +318,7 @@ struct FunctionDefinitionStatement { utils::IdType function_id_; std::vector argument_graph_ids_; + utils::IdType return_type_graph_id_; }; struct TypeDefinitionStatement { @@ -437,10 +433,15 @@ struct UnaryOperatorExpression { }; struct ReferenceExpression { - std::vector references; + std::vector references; std::unique_ptr expression; }; +struct AccessExpression { + std::unique_ptr name; + SubExpressionToken id; +}; + // Other Expressions ----------------- struct FunctionCallExpression { @@ -480,7 +481,7 @@ struct ArrayExpression { struct NameExpression { std::vector namespaces; - std::vector expressions; + std::vector expressions; }; struct TupleName { @@ -528,7 +529,7 @@ struct TypeExpression { }; struct ExtendedScopedAnyType { - std::vector references; + std::vector references; AnyType type; }; diff --git a/include/link_symbols_visitor.hpp b/include/link_symbols_visitor.hpp index f723e19..a95fe73 100644 --- a/include/link_symbols_visitor.hpp +++ b/include/link_symbols_visitor.hpp @@ -3,7 +3,7 @@ #include // for clangd -#include "abstract_types_context.hpp" +#include "abstract_types_contexts.hpp" #include "visitor.hpp" #include "global_info.hpp" @@ -64,6 +64,7 @@ private: void Visit(BinaryOperatorExpression* node) override; void Visit(UnaryOperatorExpression* node) override; void Visit(ReferenceExpression* node) override; + void Visit(AccessExpression* node) override; // Simple Expressions diff --git a/include/parse_token_types.hpp b/include/parse_token_types.hpp index fc574ae..9c89706 100644 --- a/include/parse_token_types.hpp +++ b/include/parse_token_types.hpp @@ -62,6 +62,7 @@ const std::string ScopedStatement = "scoped_statement"; const std::string BinaryOperatorExpression = "binary_operator_expression"; const std::string UnaryOperatorExpression = "unary_operator_expression"; const std::string ReferenceExpression = "reference_expression"; +const std::string AccessExpression = "access_expression"; // Other expressions diff --git a/include/print_visitor.hpp b/include/print_visitor.hpp index 875a3ab..58442bd 100644 --- a/include/print_visitor.hpp +++ b/include/print_visitor.hpp @@ -60,6 +60,7 @@ private: void Visit(BinaryOperatorExpression* node) override; void Visit(UnaryOperatorExpression* node) override; void Visit(ReferenceExpression* node) override; + void Visit(AccessExpression* node) override; // Simple Expressions diff --git a/include/type_check_visitor.hpp b/include/type_check_visitor.hpp index e279645..44e9323 100644 --- a/include/type_check_visitor.hpp +++ b/include/type_check_visitor.hpp @@ -2,7 +2,7 @@ // for clangd #include "type_info_contexts.hpp" -#include "symbols_info.hpp" +#include "utils.hpp" #include "visitor.hpp" #include "global_info.hpp" @@ -10,7 +10,8 @@ namespace interpreter { class TypeCheckVisitor : public Visitor { public: - explicit TypeCheckVisitor(info::GlobalInfo& global_info) : global_info_(global_info) {} + explicit TypeCheckVisitor(info::GlobalInfo& global_info) + : namespace_visitor_(global_info.CreateVisitor()) {} private: // Sources ----------------- @@ -61,6 +62,7 @@ private: void Visit(BinaryOperatorExpression* node) override; void Visit(UnaryOperatorExpression* node) override; void Visit(ReferenceExpression* node) override; + void Visit(AccessExpression* node) override; // Simple Expressions @@ -111,10 +113,10 @@ private: void Visit(CharLiteral* node) override; private: - info::GlobalInfo& global_info_; + info::GlobalInfo::NamespaceVisitor namespace_visitor_; info::TypeInfoContextManager context_manager_; - info::TypeInfo current_type_; + utils::IdType current_type_; }; } // namespace interpreter diff --git a/include/type_info_contexts.hpp b/include/type_info_contexts.hpp index 562c80c..424273b 100644 --- a/include/type_info_contexts.hpp +++ b/include/type_info_contexts.hpp @@ -5,22 +5,36 @@ #include // for clangd -#include "symbols_info.hpp" +#include "types_info.hpp" +#include "utils.hpp" namespace info { +// TODO: remember about typespointers class TypeInfoContextManager { public: + template + utils::IdType AddType(T&& type) { + types_.push_back(std::forward(type)); + return types_.size() - 1; + } + + const info::type::Type& GetType(utils::IdType type_id) { + return types_[type_id]; + } + + // void AddTypeRequirement(utils::IdType type, utils::IdType requrement); // TODO + void CallFunction(const std::vector& names, - const std::vector& types) { - if (names.size() != types.size()) { + const std::vector& argument_types) { + if (names.size() != argument_types.size()) { // error } contexts_.emplace_back(true); for (size_t i = 0; i < names.size(); ++i) { - DefineVariable(names[i], types[i]); + DefineVariable(names[i], argument_types[i]); } } @@ -40,18 +54,19 @@ public: contexts_.clear(); } - // TODO Variable modifiers - bool DefineVariable(const std::string& name, TypeInfo* type) { - return contexts_.back().DefineVariable(name, type); + // TODO: variable modifiers + bool DefineVariable(const std::string& name, utils::IdType type_id) { + return contexts_.back().DefineVariable(name, type_id); } - void EnterVariableContext(const std::string& name, TypeInfo* type) { // for variable namespaces, for loops + void EnterVariableContext(const std::string& name, + utils::IdType type_id) { // for variable namespaces, for loops contexts_.push_back(false); - DefineVariable(name, type); + DefineVariable(name, type_id); } - std::optional GetVariableType(const std::string& name) { + std::optional GetVariableType(const std::string& name) { for (ssize_t i = contexts_.size() - 1; i >= 0; --i) { auto maybe_type = contexts_[i].GetVariableType(name); if (maybe_type.has_value()) { @@ -66,15 +81,15 @@ private: public: Context(bool hide_previous) : hide_previous_(hide_previous) {} - bool DefineVariable(const std::string& name, TypeInfo* type) { + bool DefineVariable(const std::string& name, utils::IdType type_id) { if (variables_.count(name) > 0) { return false; } - variables_[name] = type; + variables_[name] = type_id; return true; } - std::optional GetVariableType(const std::string& name) { + std::optional GetVariableType(const std::string& name) { auto variable_iter = variables_.find(name); if (variable_iter == variables_.end()) { @@ -87,10 +102,11 @@ private: bool IsFirst() { return hide_previous_; } private: bool hide_previous_; - std::unordered_map variables_; + std::unordered_map variables_; }; std::vector contexts_; + std::vector types_; }; } // namespace info diff --git a/include/types_info.hpp b/include/types_info.hpp index f834a80..13f866b 100644 --- a/include/types_info.hpp +++ b/include/types_info.hpp @@ -1,48 +1,95 @@ +#pragma once + +#include +#include +#include +#include + // for clangd -#include "symbols_info.hpp" +#include "error_handling.hpp" +#include "utils.hpp" -namespace info { - -struct BasicType { - std::string name; - std::vector methods; // ?? - std::vector typeclasses; -}; +namespace info::type { +// TODO: differentiate abstract and basic types struct AbstractType { - size_t graph_id; + utils::IdType graph_id; + std::vector paramaters; }; -struct TupleType; -struct VariantType; -struct ReferenceType; -using AnyType = std::variant, - std::unique_ptr, - std::unique_ptr, - std::unique_ptr, - std::unique_ptr>; +struct DefinedType { + utils::IdType type_id; + std::vector paramaters; +}; -struct TupleType { - std::vector, AnyType>> fields; +enum class InternalType { + Float, + Int, + String, + Char, + Bool, + Unit, +}; + +struct TupleType { // + std::optional type; + std::vector, utils::IdType>> fields; }; struct VariantType { - std::vector> constructors; + static VariantType MakeOptional(const std::variant& option) { + if (std::holds_alternative(option)) { + return MakeOptional(option); + } else if (std::holds_alternative(option)) { + return MakeOptional(std::get(option)); + } else { + error_handling::HandleInternalError("Can't construct optional from variant", "info::type::VariantType::MakeOptional"); + } + } + + static VariantType MakeOptional(TupleType option) { // TODO + VariantType type; + + type.type = option.type; + option.type = "\'Some"; + type.constructors.emplace_back(option); + type.constructors.emplace_back("\'None"); + return type; + } + + static VariantType MakeOptional(std::string& option) { // TODO + VariantType type; + + type.type = option; + type.constructors.emplace_back("\'Some"); + type.constructors.emplace_back("\'None"); + return type; + } + + std::optional type; + std::vector> constructors; }; -struct ReferenceType { - enum { Reference, UniqueReference } reference_type; - AnyType type; +struct ReferenceToType { + std::vector references; + utils::IdType type; }; -struct FunctionalType { - +struct FunctionType { + std::vector argument_types; }; -struct Type { - size_t graph_id_; - TypeInfo* info = nullptr; - std::vector requrements_; +struct ArrayType { + std::vector element_types; }; -} // namespace info +using Type = std::variant; + +} // namespace info::type diff --git a/include/utils.hpp b/include/utils.hpp index c8135b9..4ebcef7 100644 --- a/include/utils.hpp +++ b/include/utils.hpp @@ -8,9 +8,13 @@ namespace utils { using IdType = std::size_t; +enum class ReferenceType { Reference, UniqueReference }; + template class Storage { public: + Storage() = default; + IdType GetId(const T& value) { IdType id = 0; auto value_position = value_to_id_.find(value); diff --git a/include/visitor.hpp b/include/visitor.hpp index 271ac2f..4813657 100644 --- a/include/visitor.hpp +++ b/include/visitor.hpp @@ -74,6 +74,7 @@ protected: virtual void Visit(BinaryOperatorExpression* node) {} virtual void Visit(UnaryOperatorExpression* node) {} virtual void Visit(ReferenceExpression* node) {} + virtual void Visit(AccessExpression* node) {} // Simple Expressions @@ -137,8 +138,6 @@ protected: virtual void Visit(CharLiteral* node) {} virtual void Visit(Literal& node); // variant - - virtual void Visit(NameSubExpression& node); // variant }; } // namespace interpreter diff --git a/src/build_visitor.cpp b/src/build_visitor.cpp index 22d04c4..18ad8a0 100644 --- a/src/build_visitor.cpp +++ b/src/build_visitor.cpp @@ -606,6 +606,12 @@ void BuildVisitor::Visit(SubExpressionToken& node) { } else if (current_node_type == parser::tokens::ScopedStatement) { node = std::make_unique(); Visit(std::get>(node).get()); + } if (current_node_type == parser::tokens::AccessExpression) { + node = std::make_unique(); + Visit(std::get>(node).get()); + } else if (current_node_type == parser::tokens::Literal) { + node = std::make_unique(); + Visit(*std::get>(node)); } else { // error } @@ -766,9 +772,9 @@ void BuildVisitor::Visit(ReferenceExpression* node) { for (size_t i = 0; i + 1 < child_count; ++i) { std::string reference = parse_node.NthChild(i).GetValue(); if (reference == "~") { - node->references[i] = ReferenceType::Reference; + node->references[i] = utils::ReferenceType::Reference; } else if (reference == "@") { - node->references[i] = ReferenceType::UniqueReference; + node->references[i] = utils::ReferenceType::UniqueReference; } } } @@ -780,6 +786,18 @@ void BuildVisitor::Visit(ReferenceExpression* node) { current_node_ = parse_node; } +void BuildVisitor::Visit(AccessExpression* node) { + auto parse_node = current_node_; + + current_node_ = parse_node.ChildByFieldName("name"); + Visit(node->name.get()); + + current_node_ = parse_node.ChildByFieldName("id"); + Visit(node->id); + + current_node_ = parse_node; +} + // Other expressions void BuildVisitor::Visit(FunctionArgument& node) { @@ -964,25 +982,8 @@ void BuildVisitor::Visit(NameExpression* node) { current_node_ = parse_node.NthNamedChild(i); std::string current_node_type = current_node_.GetType(); - if (current_node_type != parser::tokens::TypeSubExpression && !namespaces_ended) { + if (current_node_type != parser::tokens::TypeSubExpression) { namespaces_ended = true; - - if (i + 1 == child_count) { - node->expressions.emplace_back(); - - if (current_node_type == parser::tokens::ExtendedName) { - node->expressions.back() = std::make_unique(); - Visit(node->expressions.back()); - } else if (current_node_type == parser::tokens::Literal) { - node->expressions.back() = std::make_unique(); - Visit(*std::get>(node->expressions.back())); - } else { - // error - } - break; - } else { - // error - } } if (!namespaces_ended) { @@ -990,7 +991,7 @@ void BuildVisitor::Visit(NameExpression* node) { Visit(node->namespaces.back()); } else { node->expressions.emplace_back(); - Visit(node->expressions.back()); + Visit(&node->expressions.back()); } } @@ -1249,9 +1250,9 @@ void BuildVisitor::Visit(ExtendedScopedAnyType* node) { for (size_t i = 0; i + 1 < child_count; ++i) { std::string reference = parse_node.NthChild(i).GetValue(); if (reference == "~") { - node->references[i] = ReferenceType::Reference; + node->references[i] = utils::ReferenceType::Reference; } else if (reference == "@") { - node->references[i] = ReferenceType::UniqueReference; + node->references[i] = utils::ReferenceType::UniqueReference; } } } @@ -1428,27 +1429,4 @@ void BuildVisitor::Visit(Literal& node) { current_node_ = parse_node; } -void BuildVisitor::Visit(NameSubExpression& node) { - auto parse_node = current_node_; - - current_node_ = parse_node.NthNamedChild(0); - - std::string current_node_type = current_node_.GetType(); - - if (current_node_type == parser::tokens::ExtendedName) { - node = std::make_unique(); - Visit(std::get>(node).get()); - } else if (current_node_type == parser::tokens::Literal) { - node = std::make_unique(); - Visit(*std::get>(node)); - } else if (current_node_type == parser::tokens::SuperExpression) { - node = std::make_unique(); - Visit(*std::get>(node)); - } else { - // error - } - - current_node_ = parse_node; -} - } // namespace interpreter diff --git a/src/find_symbols_visitor.cpp b/src/find_symbols_visitor.cpp index f15b7ad..7c81d4e 100644 --- a/src/find_symbols_visitor.cpp +++ b/src/find_symbols_visitor.cpp @@ -146,6 +146,8 @@ void FindSymbolsVisitor::Visit(FunctionDefinitionStatement* node) { node->argument_graph_ids_[i] = namespace_visitor_.GetAbstractTypeGraph()->AddVertex(); } + node->return_type_graph_id_ = namespace_visitor_.GetAbstractTypeGraph()->AddVertex(); + info.expression = &node->value; node->function_id_ = namespace_visitor_.AddFunctionDefinition(definition->name, std::move(info)); diff --git a/src/link_symbols_visitor.cpp b/src/link_symbols_visitor.cpp index 1934779..5dc0c40 100644 --- a/src/link_symbols_visitor.cpp +++ b/src/link_symbols_visitor.cpp @@ -34,6 +34,12 @@ void LinkSymbolsVisitor::Visit(Partition* node) { } void LinkSymbolsVisitor::Visit(Namespace* node) { + node->type_id_ = namespace_visitor_.FindType({}, node->type); + + if (node->name.has_value() && !node->type_id_.has_value()) { + error_handling::HandleTypecheckError("Variable namespace type not found"); + } + namespace_visitor_.EnterNamespace(node->type); Visit(node->scope.get()); namespace_visitor_.ExitNamespace(); @@ -203,6 +209,11 @@ void LinkSymbolsVisitor::Visit(ReferenceExpression* node) { Visit(node->expression.get()); } +void LinkSymbolsVisitor::Visit(AccessExpression* node) { + Visitor::Visit(node->name.get()); + Visitor::Visit(node->id); +} + // Other Expressions void LinkSymbolsVisitor::Visit(FunctionCallExpression* node) { @@ -257,9 +268,9 @@ void LinkSymbolsVisitor::Visit(NameExpression* node) { for (auto& variable_namespace : node->namespaces) { Visitor::Visit(variable_namespace); } - for (auto& expression : node->expressions) { - Visitor::Visit(expression); - } + // for (auto& expression : node->expressions) { + // Visit(expression); + // } } void LinkSymbolsVisitor::Visit(TupleName* node) { diff --git a/src/parser.c b/src/parser.c index 7fd14f7..cdfbdbe 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2921 -#define LARGE_STATE_COUNT 208 -#define SYMBOL_COUNT 174 +#define STATE_COUNT 3162 +#define LARGE_STATE_COUNT 167 +#define SYMBOL_COUNT 171 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 73 +#define TOKEN_COUNT 70 #define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 17 +#define FIELD_COUNT 18 #define MAX_ALIAS_SEQUENCE_LENGTH 8 -#define PRODUCTION_ID_COUNT 36 +#define PRODUCTION_ID_COUNT 37 enum { sym_identifier = 1, @@ -35,169 +35,166 @@ enum { anon_sym_partition = 8, anon_sym_TEST = 9, anon_sym_INTERFACE = 10, - anon_sym_CORE = 11, - anon_sym_LIB = 12, - anon_sym_MODULE = 13, - anon_sym_EXE = 14, - anon_sym_use = 15, - anon_sym_EQ = 16, - anon_sym_import = 17, - anon_sym_alias = 18, - anon_sym_type = 19, - anon_sym_let = 20, - anon_sym_LT_DASH = 21, - anon_sym_decl = 22, - anon_sym_def = 23, - anon_sym_inline = 24, - anon_sym_struct = 25, - anon_sym_class = 26, - anon_sym_basic = 27, - anon_sym_abstract = 28, - anon_sym_typeclass = 29, - anon_sym_AMP = 30, - anon_sym_LPAREN = 31, - anon_sym_RPAREN = 32, - anon_sym_PIPE = 33, - anon_sym_QMARK = 34, - anon_sym_DASH_GT = 35, - anon_sym_match = 36, - anon_sym_with = 37, - anon_sym_if = 38, - anon_sym_then = 39, - anon_sym_elif = 40, - anon_sym_else = 41, - anon_sym_do = 42, - anon_sym_while = 43, - anon_sym_for = 44, - anon_sym_in = 45, - anon_sym_loop = 46, - anon_sym_SEMI = 47, - anon_sym_TILDE = 48, - anon_sym_AT = 49, - anon_sym_return = 50, - anon_sym_DOLLAR = 51, - anon_sym_BSLASH = 52, - anon_sym_LBRACK = 53, - anon_sym_RBRACK = 54, - anon_sym_break = 55, - anon_sym_continue = 56, - anon_sym_DOT = 57, - anon_sym__ = 58, - sym__line_comment = 59, - sym__doc_comment = 60, - sym__block_comment = 61, - sym_typeclass_identifier = 62, - sym_name_identifier = 63, - sym_type_identifier = 64, - sym_abstract_type_identifier = 65, - sym_operator = 66, - sym_float_number_literal = 67, - sym_number_literal = 68, - anon_sym_DQUOTE = 69, - aux_sym_string_literal_token1 = 70, - anon_sym_SQUOTE = 71, - aux_sym_char_literal_token1 = 72, - sym_source_file = 73, - sym_sources = 74, - sym_source_statement = 75, - sym_namespace = 76, - sym_partition = 77, - sym_partition_name = 78, - sym_import_statement = 79, - sym_alias_definition_statement = 80, - sym_variable_definition_statement = 81, - sym__function_declaration_statement = 82, - sym_function_declaration = 83, - sym_function_definition_statement = 84, - sym_type_definition_statement = 85, - sym_abstract_type_definition_statement = 86, - sym_typeclass_definition_statement = 87, - sym_import_symbol = 88, - sym_function_definition = 89, - sym_type_definition = 90, - sym_annotated_abstract_type = 91, - sym_annotated_type = 92, - sym_match_case = 93, - sym_match = 94, - sym_condition = 95, - sym_do_while_loop = 96, - sym_while_loop = 97, - sym_for_loop = 98, - sym_loop_loop = 99, - sym_flow_control = 100, - sym_block_statement = 101, - sym_block = 102, - sym_subexpression_token = 103, - sym_subexpression = 104, - sym_prefixed_expression = 105, - sym_expression = 106, - sym_superexpression = 107, - sym_scoped_statement = 108, - sym_binary_operator_expression = 109, - sym_unary_operator_expression = 110, - sym_reference_expression = 111, - sym_function_argument = 112, - sym_function_call_expression = 113, - sym_tuple_expression = 114, - sym_variant_expression = 115, - sym_return_expression = 116, - sym_type_constructor = 117, - sym_lambda_function = 118, - sym_array_expression = 119, - sym_loop_control_expression = 120, - sym_name_expression = 121, - sym_tuple_name = 122, - sym_variant_name = 123, - sym_annotated_name = 124, - sym_name_subexpression = 125, - sym_any_name = 126, - sym_scoped_any_name = 127, - sym_function_type = 128, - sym_tuple_type = 129, - sym_variant_type = 130, - sym_parametrized_type = 131, - sym_type_expression = 132, - sym_constructor = 133, - sym_any_type = 134, - sym_scoped_any_type = 135, - sym_extended_scoped_any_type = 136, - sym_typeclass_usage = 137, - sym_parametrized_typeclass = 138, - sym_typeclass_expression = 139, - sym_type_parameter = 140, - sym_type_subexpression = 141, - sym__type_or_typeclass = 142, - sym__name_or_operator = 143, - sym_extended_name = 144, - sym_string_literal = 145, - sym_char_literal = 146, - sym_literal = 147, - aux_sym_source_file_repeat1 = 148, - aux_sym_sources_repeat1 = 149, - aux_sym_import_statement_repeat1 = 150, - aux_sym_alias_definition_statement_repeat1 = 151, - aux_sym_function_declaration_repeat1 = 152, - aux_sym_typeclass_definition_statement_repeat1 = 153, - aux_sym_function_definition_repeat1 = 154, - aux_sym_annotated_abstract_type_repeat1 = 155, - aux_sym_match_repeat1 = 156, - aux_sym_condition_repeat1 = 157, - aux_sym_block_repeat1 = 158, - aux_sym_reference_expression_repeat1 = 159, - aux_sym_function_call_expression_repeat1 = 160, - aux_sym_tuple_expression_repeat1 = 161, - aux_sym_variant_expression_repeat1 = 162, - aux_sym_type_constructor_repeat1 = 163, - aux_sym_array_expression_repeat1 = 164, - aux_sym_name_expression_repeat1 = 165, - aux_sym_name_expression_repeat2 = 166, - aux_sym_tuple_name_repeat1 = 167, - aux_sym_variant_name_repeat1 = 168, - aux_sym_function_type_repeat1 = 169, - aux_sym_tuple_type_repeat1 = 170, - aux_sym_variant_type_repeat1 = 171, - aux_sym_parametrized_type_repeat1 = 172, - aux_sym_constructor_repeat1 = 173, + anon_sym_CODE = 11, + anon_sym_use = 12, + anon_sym_EQ = 13, + anon_sym_import = 14, + anon_sym_alias = 15, + anon_sym_type = 16, + anon_sym_let = 17, + anon_sym_LT_DASH = 18, + anon_sym_decl = 19, + anon_sym_def = 20, + anon_sym_inline = 21, + anon_sym_struct = 22, + anon_sym_class = 23, + anon_sym_basic = 24, + anon_sym_abstract = 25, + anon_sym_typeclass = 26, + anon_sym_AMP = 27, + anon_sym_LPAREN = 28, + anon_sym_RPAREN = 29, + anon_sym_PIPE = 30, + anon_sym_QMARK = 31, + anon_sym_DASH_GT = 32, + anon_sym_match = 33, + anon_sym_with = 34, + anon_sym_if = 35, + anon_sym_then = 36, + anon_sym_elif = 37, + anon_sym_else = 38, + anon_sym_do = 39, + anon_sym_while = 40, + anon_sym_for = 41, + anon_sym_in = 42, + anon_sym_loop = 43, + anon_sym_SEMI = 44, + anon_sym_TILDE = 45, + anon_sym_AT = 46, + anon_sym_return = 47, + anon_sym_DOLLAR = 48, + anon_sym_BSLASH = 49, + anon_sym_LBRACK = 50, + anon_sym_RBRACK = 51, + anon_sym_break = 52, + anon_sym_continue = 53, + anon_sym_DOT = 54, + anon_sym__ = 55, + sym__line_comment = 56, + sym__doc_comment = 57, + sym__block_comment = 58, + sym_typeclass_identifier = 59, + sym_name_identifier = 60, + sym_type_identifier = 61, + sym_abstract_type_identifier = 62, + sym_operator = 63, + sym_float_number_literal = 64, + sym_number_literal = 65, + anon_sym_DQUOTE = 66, + aux_sym_string_literal_token1 = 67, + anon_sym_SQUOTE = 68, + aux_sym_char_literal_token1 = 69, + sym_source_file = 70, + sym_sources = 71, + sym_source_statement = 72, + sym_namespace = 73, + sym_partition = 74, + sym_partition_name = 75, + sym_import_statement = 76, + sym_alias_definition_statement = 77, + sym_variable_definition_statement = 78, + sym__function_declaration_statement = 79, + sym_function_declaration = 80, + sym_function_definition_statement = 81, + sym_type_definition_statement = 82, + sym_abstract_type_definition_statement = 83, + sym_typeclass_definition_statement = 84, + sym_import_symbol = 85, + sym_function_definition = 86, + sym_type_definition = 87, + sym_annotated_abstract_type = 88, + sym_annotated_type = 89, + sym_match_case = 90, + sym_match = 91, + sym_condition = 92, + sym_do_while_loop = 93, + sym_while_loop = 94, + sym_for_loop = 95, + sym_loop_loop = 96, + sym_flow_control = 97, + sym_block_statement = 98, + sym_block = 99, + sym_subexpression_token = 100, + sym_subexpression = 101, + sym_prefixed_expression = 102, + sym_expression = 103, + sym_superexpression = 104, + sym_scoped_statement = 105, + sym_binary_operator_expression = 106, + sym_unary_operator_expression = 107, + sym_reference_expression = 108, + sym_access_expression = 109, + sym_function_argument = 110, + sym_function_call_expression = 111, + sym_tuple_expression = 112, + sym_variant_expression = 113, + sym_return_expression = 114, + sym_type_constructor = 115, + sym_lambda_function = 116, + sym_array_expression = 117, + sym_loop_control_expression = 118, + sym_name_expression = 119, + sym_tuple_name = 120, + sym_variant_name = 121, + sym_annotated_name = 122, + sym_any_name = 123, + sym_scoped_any_name = 124, + sym_function_type = 125, + sym_tuple_type = 126, + sym_variant_type = 127, + sym_parametrized_type = 128, + sym_type_expression = 129, + sym_constructor = 130, + sym_any_type = 131, + sym_scoped_any_type = 132, + sym_extended_scoped_any_type = 133, + sym_typeclass_usage = 134, + sym_parametrized_typeclass = 135, + sym_typeclass_expression = 136, + sym_type_parameter = 137, + sym_type_subexpression = 138, + sym__type_or_typeclass = 139, + sym__name_or_operator = 140, + sym_extended_name = 141, + sym_string_literal = 142, + sym_char_literal = 143, + sym_literal = 144, + aux_sym_source_file_repeat1 = 145, + aux_sym_sources_repeat1 = 146, + aux_sym_import_statement_repeat1 = 147, + aux_sym_alias_definition_statement_repeat1 = 148, + aux_sym_function_declaration_repeat1 = 149, + aux_sym_typeclass_definition_statement_repeat1 = 150, + aux_sym_function_definition_repeat1 = 151, + aux_sym_annotated_abstract_type_repeat1 = 152, + aux_sym_match_repeat1 = 153, + aux_sym_condition_repeat1 = 154, + aux_sym_block_repeat1 = 155, + aux_sym_reference_expression_repeat1 = 156, + aux_sym_function_call_expression_repeat1 = 157, + aux_sym_tuple_expression_repeat1 = 158, + aux_sym_variant_expression_repeat1 = 159, + aux_sym_type_constructor_repeat1 = 160, + aux_sym_array_expression_repeat1 = 161, + aux_sym_name_expression_repeat1 = 162, + aux_sym_name_expression_repeat2 = 163, + aux_sym_tuple_name_repeat1 = 164, + aux_sym_variant_name_repeat1 = 165, + aux_sym_function_type_repeat1 = 166, + aux_sym_tuple_type_repeat1 = 167, + aux_sym_variant_type_repeat1 = 168, + aux_sym_parametrized_type_repeat1 = 169, + aux_sym_constructor_repeat1 = 170, }; static const char * const ts_symbol_names[] = { @@ -212,10 +209,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_partition] = "partition", [anon_sym_TEST] = "TEST", [anon_sym_INTERFACE] = "INTERFACE", - [anon_sym_CORE] = "CORE", - [anon_sym_LIB] = "LIB", - [anon_sym_MODULE] = "MODULE", - [anon_sym_EXE] = "EXE", + [anon_sym_CODE] = "CODE", [anon_sym_use] = "use", [anon_sym_EQ] = "=", [anon_sym_import] = "import", @@ -313,6 +307,7 @@ static const char * const ts_symbol_names[] = { [sym_binary_operator_expression] = "binary_operator_expression", [sym_unary_operator_expression] = "unary_operator_expression", [sym_reference_expression] = "reference_expression", + [sym_access_expression] = "access_expression", [sym_function_argument] = "function_argument", [sym_function_call_expression] = "function_call_expression", [sym_tuple_expression] = "tuple_expression", @@ -326,7 +321,6 @@ static const char * const ts_symbol_names[] = { [sym_tuple_name] = "tuple_name", [sym_variant_name] = "variant_name", [sym_annotated_name] = "annotated_name", - [sym_name_subexpression] = "name_subexpression", [sym_any_name] = "any_name", [sym_scoped_any_name] = "scoped_any_name", [sym_function_type] = "function_type", @@ -389,10 +383,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_partition] = anon_sym_partition, [anon_sym_TEST] = anon_sym_TEST, [anon_sym_INTERFACE] = anon_sym_INTERFACE, - [anon_sym_CORE] = anon_sym_CORE, - [anon_sym_LIB] = anon_sym_LIB, - [anon_sym_MODULE] = anon_sym_MODULE, - [anon_sym_EXE] = anon_sym_EXE, + [anon_sym_CODE] = anon_sym_CODE, [anon_sym_use] = anon_sym_use, [anon_sym_EQ] = anon_sym_EQ, [anon_sym_import] = anon_sym_import, @@ -490,6 +481,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_binary_operator_expression] = sym_binary_operator_expression, [sym_unary_operator_expression] = sym_unary_operator_expression, [sym_reference_expression] = sym_reference_expression, + [sym_access_expression] = sym_access_expression, [sym_function_argument] = sym_function_argument, [sym_function_call_expression] = sym_function_call_expression, [sym_tuple_expression] = sym_tuple_expression, @@ -503,7 +495,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_tuple_name] = sym_tuple_name, [sym_variant_name] = sym_variant_name, [sym_annotated_name] = sym_annotated_name, - [sym_name_subexpression] = sym_name_subexpression, [sym_any_name] = sym_any_name, [sym_scoped_any_name] = sym_scoped_any_name, [sym_function_type] = sym_function_type, @@ -599,19 +590,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_CORE] = { - .visible = true, - .named = false, - }, - [anon_sym_LIB] = { - .visible = true, - .named = false, - }, - [anon_sym_MODULE] = { - .visible = true, - .named = false, - }, - [anon_sym_EXE] = { + [anon_sym_CODE] = { .visible = true, .named = false, }, @@ -1003,6 +982,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_access_expression] = { + .visible = true, + .named = true, + }, [sym_function_argument] = { .visible = true, .named = true, @@ -1055,10 +1038,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_name_subexpression] = { - .visible = true, - .named = true, - }, [sym_any_name] = { .visible = true, .named = true, @@ -1257,20 +1236,21 @@ enum { field_condition = 1, field_definition = 2, field_expression = 3, - field_interval = 4, - field_left_expression = 5, - field_module_name = 6, - field_name = 7, - field_operator_name = 8, - field_right_expression = 9, - field_scope = 10, - field_statement = 11, - field_type = 12, - field_type_expression = 13, - field_typeclass = 14, - field_typeclass_expression = 15, - field_value = 16, - field_variable = 17, + field_id = 4, + field_interval = 5, + field_left_expression = 6, + field_module_name = 7, + field_name = 8, + field_operator_name = 9, + field_right_expression = 10, + field_scope = 11, + field_statement = 12, + field_type = 13, + field_type_expression = 14, + field_typeclass = 15, + field_typeclass_expression = 16, + field_value = 17, + field_variable = 18, }; static const char * const ts_field_names[] = { @@ -1278,6 +1258,7 @@ static const char * const ts_field_names[] = { [field_condition] = "condition", [field_definition] = "definition", [field_expression] = "expression", + [field_id] = "id", [field_interval] = "interval", [field_left_expression] = "left_expression", [field_module_name] = "module_name", @@ -1316,20 +1297,21 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [19] = {.index = 28, .length = 1}, [20] = {.index = 29, .length = 1}, [21] = {.index = 30, .length = 3}, - [22] = {.index = 33, .length = 1}, - [23] = {.index = 34, .length = 1}, - [24] = {.index = 35, .length = 1}, - [25] = {.index = 36, .length = 2}, + [22] = {.index = 33, .length = 2}, + [23] = {.index = 35, .length = 1}, + [24] = {.index = 36, .length = 1}, + [25] = {.index = 37, .length = 1}, [26] = {.index = 38, .length = 2}, - [27] = {.index = 40, .length = 1}, - [28] = {.index = 41, .length = 3}, - [29] = {.index = 44, .length = 2}, - [30] = {.index = 46, .length = 1}, - [31] = {.index = 47, .length = 3}, - [32] = {.index = 50, .length = 1}, - [33] = {.index = 51, .length = 2}, + [27] = {.index = 40, .length = 2}, + [28] = {.index = 42, .length = 1}, + [29] = {.index = 43, .length = 3}, + [30] = {.index = 46, .length = 2}, + [31] = {.index = 48, .length = 1}, + [32] = {.index = 49, .length = 3}, + [33] = {.index = 52, .length = 1}, [34] = {.index = 53, .length = 2}, - [35] = {.index = 55, .length = 3}, + [35] = {.index = 55, .length = 2}, + [36] = {.index = 57, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1388,41 +1370,44 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_operator_name, 1}, {field_right_expression, 2}, [33] = - {field_typeclass_expression, 0}, - [34] = - {field_typeclass, 1}, + {field_id, 2}, + {field_name, 0}, [35] = - {field_value, 1}, + {field_typeclass_expression, 0}, [36] = + {field_typeclass, 1}, + [37] = + {field_value, 1}, + [38] = {field_condition, 3}, {field_statement, 1}, - [38] = + [40] = {field_condition, 1}, {field_statement, 3}, - [40] = + [42] = {field_expression, 3}, - [41] = + [43] = {field_name, 2}, {field_scope, 6}, {field_type, 4}, - [44] = + [46] = {field_name, 1}, {field_value, 3}, - [46] = + [48] = {field_expression, 4}, - [47] = + [49] = {field_interval, 3}, {field_statement, 5}, {field_variable, 1}, - [50] = + [52] = {field_expression, 5}, - [51] = + [53] = {field_condition, 3}, {field_value, 1}, - [53] = + [55] = {field_statement, 3}, {field_value, 1}, - [55] = + [57] = {field_condition, 3}, {field_statement, 5}, {field_value, 1}, @@ -1441,14 +1426,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, - [5] = 4, - [6] = 4, - [7] = 4, - [8] = 4, - [9] = 4, - [10] = 4, - [11] = 4, + [4] = 2, + [5] = 2, + [6] = 2, + [7] = 2, + [8] = 2, + [9] = 2, + [10] = 2, + [11] = 2, [12] = 2, [13] = 2, [14] = 2, @@ -1470,7 +1455,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [30] = 2, [31] = 2, [32] = 2, - [33] = 4, + [33] = 2, [34] = 2, [35] = 2, [36] = 2, @@ -1490,7 +1475,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [50] = 2, [51] = 2, [52] = 2, - [53] = 4, + [53] = 2, [54] = 2, [55] = 2, [56] = 2, @@ -1510,9 +1495,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [70] = 2, [71] = 2, [72] = 2, - [73] = 4, + [73] = 2, [74] = 2, - [75] = 4, + [75] = 2, [76] = 2, [77] = 2, [78] = 2, @@ -1525,1291 +1510,1291 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [85] = 2, [86] = 2, [87] = 2, - [88] = 4, - [89] = 4, - [90] = 4, + [88] = 2, + [89] = 2, + [90] = 2, [91] = 2, - [92] = 4, - [93] = 4, - [94] = 4, - [95] = 4, - [96] = 4, + [92] = 2, + [93] = 2, + [94] = 2, + [95] = 2, + [96] = 2, [97] = 2, - [98] = 4, - [99] = 4, + [98] = 2, + [99] = 2, [100] = 2, [101] = 2, - [102] = 4, - [103] = 4, + [102] = 2, + [103] = 2, [104] = 2, - [105] = 4, + [105] = 2, [106] = 2, [107] = 2, - [108] = 4, - [109] = 4, - [110] = 4, - [111] = 4, + [108] = 2, + [109] = 2, + [110] = 2, + [111] = 2, [112] = 2, - [113] = 4, + [113] = 2, [114] = 2, - [115] = 4, - [116] = 4, + [115] = 2, + [116] = 2, [117] = 2, [118] = 2, [119] = 2, [120] = 2, [121] = 2, [122] = 2, - [123] = 4, + [123] = 2, [124] = 2, - [125] = 4, + [125] = 2, [126] = 2, - [127] = 4, + [127] = 2, [128] = 2, - [129] = 4, + [129] = 2, [130] = 2, - [131] = 4, - [132] = 4, - [133] = 4, - [134] = 4, + [131] = 2, + [132] = 2, + [133] = 2, + [134] = 2, [135] = 2, - [136] = 4, - [137] = 4, - [138] = 4, - [139] = 4, + [136] = 2, + [137] = 2, + [138] = 2, + [139] = 2, [140] = 2, - [141] = 4, - [142] = 4, - [143] = 4, - [144] = 4, + [141] = 2, + [142] = 2, + [143] = 2, + [144] = 2, [145] = 2, - [146] = 146, - [147] = 147, - [148] = 147, - [149] = 147, - [150] = 147, - [151] = 151, - [152] = 147, - [153] = 147, + [146] = 2, + [147] = 2, + [148] = 2, + [149] = 2, + [150] = 2, + [151] = 2, + [152] = 2, + [153] = 2, [154] = 154, - [155] = 147, - [156] = 147, - [157] = 147, - [158] = 151, - [159] = 147, - [160] = 146, - [161] = 147, - [162] = 147, - [163] = 147, - [164] = 147, - [165] = 147, - [166] = 147, - [167] = 147, - [168] = 147, - [169] = 147, + [155] = 155, + [156] = 154, + [157] = 157, + [158] = 154, + [159] = 154, + [160] = 154, + [161] = 154, + [162] = 155, + [163] = 154, + [164] = 157, + [165] = 154, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 169, [170] = 170, - [171] = 154, - [172] = 147, - [173] = 147, - [174] = 147, - [175] = 147, - [176] = 147, - [177] = 147, - [178] = 147, - [179] = 146, - [180] = 147, - [181] = 147, - [182] = 147, - [183] = 147, - [184] = 147, - [185] = 147, - [186] = 147, - [187] = 146, - [188] = 146, - [189] = 147, - [190] = 147, - [191] = 147, - [192] = 147, - [193] = 146, - [194] = 146, - [195] = 147, - [196] = 147, - [197] = 147, - [198] = 147, - [199] = 147, - [200] = 146, - [201] = 147, - [202] = 147, - [203] = 147, - [204] = 147, - [205] = 147, - [206] = 147, - [207] = 147, - [208] = 208, - [209] = 209, - [210] = 210, - [211] = 211, - [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, - [217] = 217, - [218] = 218, - [219] = 219, - [220] = 219, - [221] = 219, - [222] = 219, - [223] = 223, - [224] = 219, - [225] = 219, - [226] = 219, - [227] = 219, - [228] = 223, - [229] = 219, - [230] = 219, - [231] = 223, - [232] = 219, - [233] = 219, - [234] = 219, - [235] = 235, - [236] = 219, - [237] = 219, - [238] = 219, - [239] = 223, - [240] = 219, - [241] = 219, - [242] = 219, - [243] = 223, - [244] = 219, - [245] = 219, - [246] = 219, - [247] = 219, - [248] = 219, - [249] = 219, - [250] = 219, - [251] = 219, - [252] = 219, - [253] = 223, - [254] = 219, - [255] = 219, - [256] = 219, - [257] = 219, - [258] = 219, - [259] = 219, - [260] = 219, - [261] = 219, - [262] = 219, - [263] = 219, - [264] = 223, - [265] = 219, - [266] = 223, - [267] = 219, - [268] = 219, - [269] = 219, - [270] = 219, - [271] = 219, - [272] = 272, - [273] = 219, - [274] = 219, - [275] = 275, - [276] = 219, - [277] = 219, - [278] = 219, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 275, - [285] = 285, - [286] = 286, - [287] = 272, - [288] = 285, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 179, + [181] = 178, + [182] = 178, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 178, + [187] = 178, + [188] = 178, + [189] = 183, + [190] = 183, + [191] = 183, + [192] = 183, + [193] = 183, + [194] = 183, + [195] = 183, + [196] = 183, + [197] = 183, + [198] = 183, + [199] = 183, + [200] = 179, + [201] = 183, + [202] = 183, + [203] = 183, + [204] = 183, + [205] = 183, + [206] = 183, + [207] = 183, + [208] = 183, + [209] = 183, + [210] = 183, + [211] = 183, + [212] = 183, + [213] = 183, + [214] = 183, + [215] = 183, + [216] = 183, + [217] = 183, + [218] = 183, + [219] = 183, + [220] = 183, + [221] = 183, + [222] = 183, + [223] = 183, + [224] = 179, + [225] = 183, + [226] = 183, + [227] = 183, + [228] = 183, + [229] = 183, + [230] = 183, + [231] = 183, + [232] = 179, + [233] = 183, + [234] = 183, + [235] = 183, + [236] = 183, + [237] = 183, + [238] = 179, + [239] = 183, + [240] = 183, + [241] = 183, + [242] = 183, + [243] = 179, + [244] = 183, + [245] = 183, + [246] = 183, + [247] = 183, + [248] = 179, + [249] = 183, + [250] = 250, + [251] = 251, + [252] = 252, + [253] = 253, + [254] = 254, + [255] = 250, + [256] = 256, + [257] = 257, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 251, + [262] = 250, + [263] = 184, + [264] = 264, + [265] = 178, + [266] = 257, + [267] = 260, + [268] = 268, + [269] = 178, + [270] = 257, + [271] = 178, + [272] = 178, + [273] = 273, + [274] = 184, + [275] = 250, + [276] = 185, + [277] = 178, + [278] = 260, + [279] = 257, + [280] = 258, + [281] = 257, + [282] = 273, + [283] = 250, + [284] = 260, + [285] = 264, + [286] = 259, + [287] = 250, + [288] = 264, [289] = 289, - [290] = 279, - [291] = 281, - [292] = 292, - [293] = 292, - [294] = 286, - [295] = 292, - [296] = 296, - [297] = 282, - [298] = 283, - [299] = 279, - [300] = 282, - [301] = 301, - [302] = 283, - [303] = 283, - [304] = 280, - [305] = 289, - [306] = 285, - [307] = 279, - [308] = 281, - [309] = 286, - [310] = 310, - [311] = 311, + [290] = 260, + [291] = 291, + [292] = 258, + [293] = 293, + [294] = 273, + [295] = 295, + [296] = 251, + [297] = 264, + [298] = 250, + [299] = 184, + [300] = 256, + [301] = 185, + [302] = 293, + [303] = 303, + [304] = 273, + [305] = 273, + [306] = 257, + [307] = 250, + [308] = 260, + [309] = 258, + [310] = 257, + [311] = 289, [312] = 312, - [313] = 282, - [314] = 282, + [313] = 250, + [314] = 264, [315] = 315, - [316] = 316, - [317] = 283, - [318] = 318, + [316] = 289, + [317] = 178, + [318] = 257, [319] = 319, - [320] = 286, - [321] = 281, - [322] = 285, - [323] = 310, - [324] = 311, - [325] = 285, - [326] = 235, + [320] = 320, + [321] = 273, + [322] = 260, + [323] = 323, + [324] = 256, + [325] = 258, + [326] = 264, [327] = 327, - [328] = 279, - [329] = 279, - [330] = 281, - [331] = 285, - [332] = 286, - [333] = 235, - [334] = 312, - [335] = 275, - [336] = 318, - [337] = 272, - [338] = 283, - [339] = 282, - [340] = 282, - [341] = 341, - [342] = 281, - [343] = 282, - [344] = 283, - [345] = 286, - [346] = 285, - [347] = 281, - [348] = 279, - [349] = 279, - [350] = 285, - [351] = 283, - [352] = 282, - [353] = 281, - [354] = 286, - [355] = 286, - [356] = 281, - [357] = 279, - [358] = 285, - [359] = 359, - [360] = 282, - [361] = 283, - [362] = 286, - [363] = 283, - [364] = 283, - [365] = 365, - [366] = 272, - [367] = 282, - [368] = 296, - [369] = 275, - [370] = 285, - [371] = 235, - [372] = 365, - [373] = 359, - [374] = 279, - [375] = 281, - [376] = 286, - [377] = 377, - [378] = 378, - [379] = 286, - [380] = 281, - [381] = 281, - [382] = 285, - [383] = 272, - [384] = 283, - [385] = 296, - [386] = 275, - [387] = 378, - [388] = 279, - [389] = 282, - [390] = 365, - [391] = 377, - [392] = 316, - [393] = 319, - [394] = 285, - [395] = 327, - [396] = 286, - [397] = 359, - [398] = 235, - [399] = 296, - [400] = 286, - [401] = 282, - [402] = 281, - [403] = 283, - [404] = 279, - [405] = 285, - [406] = 283, - [407] = 285, - [408] = 279, - [409] = 282, - [410] = 365, - [411] = 411, - [412] = 281, - [413] = 286, - [414] = 286, - [415] = 281, - [416] = 279, - [417] = 285, - [418] = 283, - [419] = 282, - [420] = 286, - [421] = 281, - [422] = 279, - [423] = 282, - [424] = 285, - [425] = 301, - [426] = 283, - [427] = 283, - [428] = 282, - [429] = 327, - [430] = 285, - [431] = 285, - [432] = 279, - [433] = 281, - [434] = 286, - [435] = 286, - [436] = 235, - [437] = 319, - [438] = 275, - [439] = 359, - [440] = 272, - [441] = 316, - [442] = 286, - [443] = 282, - [444] = 279, - [445] = 281, - [446] = 283, - [447] = 279, - [448] = 285, - [449] = 281, - [450] = 283, - [451] = 451, - [452] = 315, - [453] = 282, - [454] = 285, - [455] = 279, - [456] = 301, - [457] = 283, - [458] = 451, - [459] = 378, - [460] = 315, - [461] = 282, - [462] = 451, - [463] = 281, - [464] = 286, - [465] = 377, - [466] = 280, - [467] = 289, - [468] = 286, - [469] = 310, - [470] = 311, - [471] = 318, - [472] = 312, - [473] = 318, - [474] = 282, - [475] = 312, - [476] = 286, - [477] = 377, - [478] = 283, - [479] = 378, - [480] = 285, - [481] = 281, - [482] = 279, - [483] = 281, - [484] = 286, - [485] = 311, - [486] = 279, - [487] = 316, - [488] = 319, - [489] = 285, - [490] = 327, - [491] = 301, - [492] = 283, - [493] = 282, - [494] = 282, - [495] = 283, - [496] = 292, - [497] = 285, - [498] = 279, - [499] = 451, - [500] = 281, - [501] = 286, - [502] = 315, - [503] = 280, - [504] = 279, - [505] = 282, - [506] = 283, - [507] = 289, - [508] = 310, - [509] = 285, - [510] = 279, - [511] = 281, - [512] = 275, - [513] = 272, - [514] = 235, - [515] = 275, - [516] = 272, - [517] = 272, - [518] = 272, - [519] = 275, - [520] = 275, - [521] = 235, - [522] = 235, - [523] = 272, - [524] = 275, - [525] = 235, - [526] = 235, - [527] = 275, - [528] = 235, - [529] = 275, - [530] = 272, - [531] = 235, - [532] = 275, - [533] = 272, - [534] = 272, - [535] = 275, - [536] = 272, - [537] = 235, - [538] = 235, - [539] = 275, - [540] = 235, - [541] = 272, - [542] = 272, - [543] = 275, - [544] = 275, - [545] = 235, - [546] = 235, - [547] = 275, - [548] = 272, - [549] = 235, - [550] = 275, - [551] = 272, - [552] = 272, - [553] = 235, - [554] = 275, - [555] = 235, - [556] = 272, - [557] = 272, - [558] = 275, - [559] = 235, - [560] = 235, - [561] = 272, - [562] = 275, - [563] = 272, - [564] = 272, - [565] = 235, - [566] = 272, - [567] = 275, - [568] = 235, - [569] = 272, - [570] = 275, - [571] = 235, - [572] = 235, - [573] = 275, - [574] = 272, - [575] = 275, - [576] = 235, - [577] = 275, - [578] = 235, - [579] = 235, - [580] = 272, - [581] = 272, - [582] = 275, - [583] = 275, - [584] = 584, - [585] = 585, - [586] = 586, - [587] = 587, - [588] = 588, - [589] = 589, - [590] = 590, - [591] = 591, - [592] = 592, - [593] = 593, - [594] = 594, - [595] = 595, - [596] = 596, - [597] = 597, - [598] = 594, - [599] = 599, - [600] = 600, - [601] = 601, - [602] = 602, - [603] = 603, - [604] = 604, - [605] = 601, - [606] = 594, - [607] = 602, - [608] = 600, - [609] = 604, - [610] = 599, - [611] = 597, - [612] = 603, - [613] = 596, - [614] = 600, - [615] = 599, - [616] = 604, - [617] = 594, - [618] = 602, - [619] = 601, - [620] = 603, - [621] = 597, - [622] = 594, - [623] = 596, - [624] = 601, - [625] = 596, - [626] = 601, - [627] = 599, - [628] = 603, - [629] = 594, - [630] = 600, - [631] = 596, - [632] = 594, - [633] = 602, - [634] = 597, - [635] = 604, - [636] = 600, - [637] = 604, - [638] = 597, - [639] = 602, - [640] = 599, - [641] = 603, - [642] = 599, - [643] = 600, - [644] = 601, - [645] = 596, - [646] = 602, - [647] = 596, - [648] = 597, - [649] = 603, - [650] = 602, - [651] = 603, - [652] = 604, - [653] = 599, - [654] = 594, - [655] = 600, - [656] = 597, - [657] = 604, - [658] = 601, - [659] = 601, - [660] = 602, - [661] = 599, - [662] = 597, - [663] = 600, - [664] = 596, - [665] = 665, - [666] = 604, - [667] = 603, - [668] = 668, - [669] = 669, - [670] = 670, - [671] = 594, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 678, - [679] = 679, - [680] = 680, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 594, - [687] = 677, - [688] = 669, - [689] = 680, - [690] = 679, - [691] = 682, - [692] = 272, - [693] = 683, - [694] = 275, - [695] = 668, - [696] = 684, - [697] = 682, - [698] = 678, - [699] = 235, - [700] = 670, - [701] = 672, - [702] = 677, - [703] = 676, - [704] = 682, - [705] = 680, - [706] = 669, - [707] = 670, - [708] = 673, - [709] = 674, - [710] = 675, - [711] = 676, - [712] = 677, - [713] = 679, - [714] = 683, - [715] = 675, - [716] = 674, - [717] = 668, - [718] = 684, - [719] = 678, - [720] = 672, - [721] = 721, - [722] = 596, - [723] = 682, - [724] = 680, - [725] = 669, - [726] = 670, - [727] = 673, - [728] = 674, - [729] = 675, - [730] = 673, - [731] = 676, - [732] = 674, - [733] = 670, - [734] = 679, - [735] = 675, - [736] = 676, - [737] = 677, - [738] = 679, - [739] = 673, - [740] = 683, - [741] = 668, - [742] = 684, - [743] = 594, - [744] = 678, - [745] = 672, - [746] = 594, - [747] = 683, + [328] = 184, + [329] = 251, + [330] = 330, + [331] = 264, + [332] = 332, + [333] = 185, + [334] = 273, + [335] = 273, + [336] = 273, + [337] = 257, + [338] = 185, + [339] = 250, + [340] = 260, + [341] = 258, + [342] = 257, + [343] = 178, + [344] = 293, + [345] = 250, + [346] = 184, + [347] = 185, + [348] = 260, + [349] = 178, + [350] = 259, + [351] = 258, + [352] = 260, + [353] = 289, + [354] = 264, + [355] = 258, + [356] = 178, + [357] = 273, + [358] = 264, + [359] = 264, + [360] = 258, + [361] = 273, + [362] = 257, + [363] = 250, + [364] = 264, + [365] = 257, + [366] = 250, + [367] = 260, + [368] = 273, + [369] = 264, + [370] = 260, + [371] = 258, + [372] = 258, + [373] = 264, + [374] = 295, + [375] = 273, + [376] = 260, + [377] = 258, + [378] = 250, + [379] = 273, + [380] = 257, + [381] = 332, + [382] = 330, + [383] = 323, + [384] = 264, + [385] = 320, + [386] = 319, + [387] = 257, + [388] = 315, + [389] = 312, + [390] = 250, + [391] = 291, + [392] = 273, + [393] = 260, + [394] = 254, + [395] = 253, + [396] = 252, + [397] = 273, + [398] = 264, + [399] = 258, + [400] = 264, + [401] = 250, + [402] = 273, + [403] = 264, + [404] = 260, + [405] = 273, + [406] = 295, + [407] = 264, + [408] = 258, + [409] = 273, + [410] = 257, + [411] = 250, + [412] = 260, + [413] = 258, + [414] = 332, + [415] = 330, + [416] = 323, + [417] = 257, + [418] = 320, + [419] = 319, + [420] = 250, + [421] = 257, + [422] = 315, + [423] = 260, + [424] = 312, + [425] = 256, + [426] = 264, + [427] = 291, + [428] = 258, + [429] = 258, + [430] = 257, + [431] = 260, + [432] = 254, + [433] = 253, + [434] = 258, + [435] = 252, + [436] = 250, + [437] = 273, + [438] = 260, + [439] = 264, + [440] = 258, + [441] = 259, + [442] = 273, + [443] = 258, + [444] = 264, + [445] = 260, + [446] = 258, + [447] = 250, + [448] = 257, + [449] = 264, + [450] = 258, + [451] = 273, + [452] = 295, + [453] = 260, + [454] = 273, + [455] = 264, + [456] = 250, + [457] = 257, + [458] = 257, + [459] = 293, + [460] = 273, + [461] = 264, + [462] = 250, + [463] = 260, + [464] = 257, + [465] = 250, + [466] = 260, + [467] = 258, + [468] = 332, + [469] = 330, + [470] = 323, + [471] = 320, + [472] = 319, + [473] = 257, + [474] = 303, + [475] = 315, + [476] = 312, + [477] = 250, + [478] = 291, + [479] = 303, + [480] = 258, + [481] = 260, + [482] = 303, + [483] = 254, + [484] = 253, + [485] = 257, + [486] = 252, + [487] = 184, + [488] = 184, + [489] = 185, + [490] = 185, + [491] = 178, + [492] = 184, + [493] = 184, + [494] = 185, + [495] = 178, + [496] = 184, + [497] = 185, + [498] = 178, + [499] = 178, + [500] = 178, + [501] = 185, + [502] = 184, + [503] = 178, + [504] = 185, + [505] = 184, + [506] = 184, + [507] = 185, + [508] = 178, + [509] = 178, + [510] = 184, + [511] = 185, + [512] = 185, + [513] = 184, + [514] = 184, + [515] = 185, + [516] = 178, + [517] = 184, + [518] = 185, + [519] = 178, + [520] = 185, + [521] = 184, + [522] = 184, + [523] = 184, + [524] = 178, + [525] = 185, + [526] = 185, + [527] = 184, + [528] = 178, + [529] = 185, + [530] = 185, + [531] = 184, + [532] = 185, + [533] = 178, + [534] = 185, + [535] = 184, + [536] = 185, + [537] = 185, + [538] = 184, + [539] = 178, + [540] = 184, + [541] = 185, + [542] = 184, + [543] = 178, + [544] = 185, + [545] = 184, + [546] = 185, + [547] = 185, + [548] = 184, + [549] = 184, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 570, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 567, + [581] = 554, + [582] = 571, + [583] = 554, + [584] = 564, + [585] = 574, + [586] = 553, + [587] = 568, + [588] = 566, + [589] = 560, + [590] = 558, + [591] = 558, + [592] = 570, + [593] = 576, + [594] = 575, + [595] = 553, + [596] = 573, + [597] = 569, + [598] = 572, + [599] = 560, + [600] = 564, + [601] = 577, + [602] = 578, + [603] = 566, + [604] = 578, + [605] = 569, + [606] = 573, + [607] = 564, + [608] = 564, + [609] = 560, + [610] = 558, + [611] = 553, + [612] = 579, + [613] = 554, + [614] = 572, + [615] = 566, + [616] = 579, + [617] = 560, + [618] = 576, + [619] = 575, + [620] = 567, + [621] = 570, + [622] = 568, + [623] = 577, + [624] = 566, + [625] = 554, + [626] = 571, + [627] = 553, + [628] = 558, + [629] = 574, + [630] = 570, + [631] = 579, + [632] = 566, + [633] = 564, + [634] = 572, + [635] = 579, + [636] = 577, + [637] = 554, + [638] = 553, + [639] = 558, + [640] = 560, + [641] = 564, + [642] = 574, + [643] = 567, + [644] = 575, + [645] = 571, + [646] = 576, + [647] = 573, + [648] = 578, + [649] = 569, + [650] = 569, + [651] = 568, + [652] = 578, + [653] = 576, + [654] = 571, + [655] = 566, + [656] = 575, + [657] = 570, + [658] = 568, + [659] = 567, + [660] = 554, + [661] = 573, + [662] = 574, + [663] = 577, + [664] = 553, + [665] = 572, + [666] = 558, + [667] = 560, + [668] = 575, + [669] = 578, + [670] = 572, + [671] = 577, + [672] = 574, + [673] = 573, + [674] = 571, + [675] = 576, + [676] = 579, + [677] = 569, + [678] = 568, + [679] = 570, + [680] = 567, + [681] = 564, + [682] = 560, + [683] = 566, + [684] = 558, + [685] = 553, + [686] = 554, + [687] = 567, + [688] = 575, + [689] = 571, + [690] = 554, + [691] = 576, + [692] = 579, + [693] = 578, + [694] = 566, + [695] = 569, + [696] = 553, + [697] = 558, + [698] = 560, + [699] = 570, + [700] = 568, + [701] = 573, + [702] = 574, + [703] = 577, + [704] = 572, + [705] = 564, + [706] = 574, + [707] = 575, + [708] = 577, + [709] = 571, + [710] = 567, + [711] = 572, + [712] = 573, + [713] = 576, + [714] = 564, + [715] = 560, + [716] = 558, + [717] = 566, + [718] = 553, + [719] = 554, + [720] = 554, + [721] = 570, + [722] = 578, + [723] = 566, + [724] = 553, + [725] = 558, + [726] = 564, + [727] = 560, + [728] = 568, + [729] = 569, + [730] = 560, + [731] = 558, + [732] = 732, + [733] = 564, + [734] = 553, + [735] = 554, + [736] = 579, + [737] = 566, + [738] = 558, + [739] = 558, + [740] = 554, + [741] = 553, + [742] = 742, + [743] = 560, + [744] = 564, + [745] = 566, + [746] = 558, + [747] = 564, [748] = 748, - [749] = 594, - [750] = 750, - [751] = 668, - [752] = 684, - [753] = 678, - [754] = 672, - [755] = 755, - [756] = 756, - [757] = 757, - [758] = 758, - [759] = 759, - [760] = 760, - [761] = 672, - [762] = 678, - [763] = 684, - [764] = 682, - [765] = 668, - [766] = 683, - [767] = 680, - [768] = 679, - [769] = 677, - [770] = 676, - [771] = 675, - [772] = 674, - [773] = 673, - [774] = 670, - [775] = 669, - [776] = 680, - [777] = 669, - [778] = 594, - [779] = 669, - [780] = 676, - [781] = 272, - [782] = 672, - [783] = 755, - [784] = 275, - [785] = 678, - [786] = 235, - [787] = 672, - [788] = 594, - [789] = 235, - [790] = 678, - [791] = 684, - [792] = 684, - [793] = 668, - [794] = 668, - [795] = 275, - [796] = 683, - [797] = 272, - [798] = 679, - [799] = 683, - [800] = 755, - [801] = 677, - [802] = 676, - [803] = 675, - [804] = 674, - [805] = 673, - [806] = 596, - [807] = 679, - [808] = 594, - [809] = 670, - [810] = 677, - [811] = 669, - [812] = 680, - [813] = 682, - [814] = 755, - [815] = 682, - [816] = 676, - [817] = 596, - [818] = 675, - [819] = 680, - [820] = 674, - [821] = 673, - [822] = 669, - [823] = 670, - [824] = 594, - [825] = 682, - [826] = 680, - [827] = 670, - [828] = 672, - [829] = 678, - [830] = 669, - [831] = 594, - [832] = 684, - [833] = 680, - [834] = 668, - [835] = 682, - [836] = 683, - [837] = 679, - [838] = 677, - [839] = 676, - [840] = 675, - [841] = 674, - [842] = 673, - [843] = 673, - [844] = 670, - [845] = 673, - [846] = 235, - [847] = 670, - [848] = 669, - [849] = 680, - [850] = 674, - [851] = 682, - [852] = 675, - [853] = 275, - [854] = 676, - [855] = 272, - [856] = 677, - [857] = 679, - [858] = 683, - [859] = 755, - [860] = 682, - [861] = 674, - [862] = 675, - [863] = 680, - [864] = 676, - [865] = 669, - [866] = 670, - [867] = 668, - [868] = 684, - [869] = 672, - [870] = 594, - [871] = 678, - [872] = 673, - [873] = 677, - [874] = 674, - [875] = 675, - [876] = 676, - [877] = 677, - [878] = 679, - [879] = 596, - [880] = 272, - [881] = 678, - [882] = 683, - [883] = 684, - [884] = 668, - [885] = 275, - [886] = 672, - [887] = 679, - [888] = 668, - [889] = 684, - [890] = 594, - [891] = 678, - [892] = 235, - [893] = 683, - [894] = 672, - [895] = 682, - [896] = 683, - [897] = 680, - [898] = 669, - [899] = 679, - [900] = 677, - [901] = 670, - [902] = 668, - [903] = 676, - [904] = 675, - [905] = 673, - [906] = 684, - [907] = 674, - [908] = 675, - [909] = 674, - [910] = 596, - [911] = 673, - [912] = 677, - [913] = 679, - [914] = 678, - [915] = 672, - [916] = 678, - [917] = 683, - [918] = 684, - [919] = 668, - [920] = 755, - [921] = 672, - [922] = 594, - [923] = 683, - [924] = 668, - [925] = 670, - [926] = 669, - [927] = 684, - [928] = 680, - [929] = 679, - [930] = 677, - [931] = 676, - [932] = 675, - [933] = 674, - [934] = 682, - [935] = 594, - [936] = 678, - [937] = 596, - [938] = 673, - [939] = 594, - [940] = 672, - [941] = 670, - [942] = 669, - [943] = 680, - [944] = 682, - [945] = 676, - [946] = 946, - [947] = 947, - [948] = 677, - [949] = 596, - [950] = 668, - [951] = 670, - [952] = 678, - [953] = 953, - [954] = 679, - [955] = 675, - [956] = 594, - [957] = 672, - [958] = 678, - [959] = 953, - [960] = 684, - [961] = 668, - [962] = 755, - [963] = 673, - [964] = 953, - [965] = 683, - [966] = 594, - [967] = 674, - [968] = 596, - [969] = 674, - [970] = 970, - [971] = 679, - [972] = 677, - [973] = 676, - [974] = 675, - [975] = 674, - [976] = 675, - [977] = 673, - [978] = 596, - [979] = 979, - [980] = 953, - [981] = 683, - [982] = 674, - [983] = 670, - [984] = 947, - [985] = 669, - [986] = 672, - [987] = 680, - [988] = 678, - [989] = 682, - [990] = 676, - [991] = 677, - [992] = 953, - [993] = 272, - [994] = 946, - [995] = 946, - [996] = 682, - [997] = 755, - [998] = 946, - [999] = 680, - [1000] = 668, - [1001] = 678, - [1002] = 953, - [1003] = 953, - [1004] = 953, - [1005] = 669, - [1006] = 670, - [1007] = 677, - [1008] = 670, - [1009] = 1009, - [1010] = 673, - [1011] = 674, - [1012] = 675, - [1013] = 684, - [1014] = 755, - [1015] = 953, - [1016] = 594, - [1017] = 676, - [1018] = 684, - [1019] = 677, - [1020] = 683, - [1021] = 669, - [1022] = 596, - [1023] = 679, - [1024] = 668, - [1025] = 683, - [1026] = 668, - [1027] = 680, - [1028] = 684, - [1029] = 682, - [1030] = 755, - [1031] = 683, - [1032] = 953, - [1033] = 594, - [1034] = 678, - [1035] = 672, - [1036] = 953, - [1037] = 594, - [1038] = 596, - [1039] = 946, - [1040] = 680, - [1041] = 272, - [1042] = 275, - [1043] = 680, - [1044] = 235, - [1045] = 235, - [1046] = 596, - [1047] = 596, - [1048] = 946, - [1049] = 682, - [1050] = 669, - [1051] = 682, - [1052] = 680, - [1053] = 679, - [1054] = 669, - [1055] = 670, - [1056] = 755, - [1057] = 670, - [1058] = 679, - [1059] = 672, - [1060] = 953, - [1061] = 673, - [1062] = 677, - [1063] = 674, - [1064] = 675, - [1065] = 673, - [1066] = 755, - [1067] = 676, - [1068] = 676, - [1069] = 272, - [1070] = 755, - [1071] = 683, - [1072] = 953, - [1073] = 946, - [1074] = 275, - [1075] = 953, - [1076] = 953, - [1077] = 668, - [1078] = 684, - [1079] = 946, - [1080] = 678, - [1081] = 235, - [1082] = 953, - [1083] = 672, - [1084] = 679, - [1085] = 684, - [1086] = 673, - [1087] = 755, - [1088] = 594, - [1089] = 675, - [1090] = 674, - [1091] = 953, - [1092] = 953, - [1093] = 675, - [1094] = 953, - [1095] = 953, - [1096] = 947, - [1097] = 979, - [1098] = 672, - [1099] = 979, - [1100] = 953, - [1101] = 946, - [1102] = 953, - [1103] = 953, - [1104] = 682, - [1105] = 946, - [1106] = 953, - [1107] = 946, - [1108] = 953, - [1109] = 953, - [1110] = 953, - [1111] = 946, - [1112] = 682, - [1113] = 953, - [1114] = 953, - [1115] = 680, - [1116] = 953, - [1117] = 669, - [1118] = 670, - [1119] = 953, - [1120] = 947, - [1121] = 979, - [1122] = 953, - [1123] = 946, - [1124] = 673, - [1125] = 1125, - [1126] = 674, - [1127] = 675, - [1128] = 676, - [1129] = 677, - [1130] = 679, - [1131] = 596, - [1132] = 953, - [1133] = 676, - [1134] = 683, - [1135] = 755, - [1136] = 677, - [1137] = 946, - [1138] = 679, - [1139] = 596, - [1140] = 668, - [1141] = 684, - [1142] = 946, - [1143] = 678, - [1144] = 953, - [1145] = 953, - [1146] = 672, - [1147] = 682, - [1148] = 272, - [1149] = 669, - [1150] = 275, - [1151] = 953, - [1152] = 953, - [1153] = 680, - [1154] = 953, - [1155] = 669, - [1156] = 670, - [1157] = 672, - [1158] = 594, - [1159] = 235, - [1160] = 678, - [1161] = 684, - [1162] = 953, - [1163] = 946, - [1164] = 946, - [1165] = 953, - [1166] = 946, - [1167] = 946, - [1168] = 953, - [1169] = 946, - [1170] = 953, - [1171] = 953, - [1172] = 668, - [1173] = 953, - [1174] = 953, - [1175] = 946, - [1176] = 594, - [1177] = 275, - [1178] = 946, - [1179] = 946, - [1180] = 673, - [1181] = 953, - [1182] = 946, - [1183] = 953, - [1184] = 683, - [1185] = 953, - [1186] = 677, - [1187] = 755, - [1188] = 596, - [1189] = 682, - [1190] = 755, - [1191] = 669, - [1192] = 594, - [1193] = 669, - [1194] = 670, - [1195] = 670, - [1196] = 682, - [1197] = 672, - [1198] = 684, - [1199] = 755, - [1200] = 594, - [1201] = 683, - [1202] = 680, - [1203] = 677, - [1204] = 668, - [1205] = 676, - [1206] = 596, - [1207] = 673, - [1208] = 755, - [1209] = 675, - [1210] = 674, - [1211] = 596, - [1212] = 684, - [1213] = 678, - [1214] = 673, - [1215] = 672, - [1216] = 673, - [1217] = 678, - [1218] = 674, - [1219] = 683, - [1220] = 674, - [1221] = 675, - [1222] = 675, - [1223] = 676, - [1224] = 676, - [1225] = 677, - [1226] = 679, - [1227] = 677, - [1228] = 683, - [1229] = 668, - [1230] = 670, - [1231] = 669, - [1232] = 668, - [1233] = 684, - [1234] = 680, - [1235] = 678, - [1236] = 596, - [1237] = 672, - [1238] = 680, - [1239] = 679, - [1240] = 594, - [1241] = 674, - [1242] = 668, - [1243] = 755, - [1244] = 672, - [1245] = 678, - [1246] = 684, - [1247] = 755, - [1248] = 668, - [1249] = 755, - [1250] = 683, - [1251] = 679, - [1252] = 677, - [1253] = 755, - [1254] = 676, - [1255] = 272, - [1256] = 675, - [1257] = 682, - [1258] = 275, - [1259] = 679, - [1260] = 594, - [1261] = 674, - [1262] = 235, - [1263] = 272, - [1264] = 235, - [1265] = 672, - [1266] = 673, - [1267] = 678, - [1268] = 275, - [1269] = 275, - [1270] = 596, - [1271] = 594, - [1272] = 235, - [1273] = 272, - [1274] = 596, - [1275] = 684, - [1276] = 596, - [1277] = 670, - [1278] = 669, - [1279] = 680, - [1280] = 683, - [1281] = 682, - [1282] = 679, - [1283] = 235, - [1284] = 676, - [1285] = 675, - [1286] = 272, - [1287] = 596, - [1288] = 275, - [1289] = 272, - [1290] = 682, - [1291] = 680, - [1292] = 235, - [1293] = 669, - [1294] = 670, - [1295] = 275, - [1296] = 673, - [1297] = 674, - [1298] = 683, - [1299] = 675, - [1300] = 755, - [1301] = 677, - [1302] = 679, - [1303] = 683, - [1304] = 668, - [1305] = 275, - [1306] = 676, - [1307] = 235, - [1308] = 684, - [1309] = 678, - [1310] = 272, - [1311] = 673, - [1312] = 594, - [1313] = 1313, - [1314] = 272, - [1315] = 275, - [1316] = 755, - [1317] = 755, - [1318] = 670, - [1319] = 1319, - [1320] = 235, - [1321] = 669, - [1322] = 272, - [1323] = 275, - [1324] = 235, - [1325] = 594, - [1326] = 272, - [1327] = 680, - [1328] = 755, - [1329] = 275, - [1330] = 682, - [1331] = 235, - [1332] = 596, - [1333] = 596, - [1334] = 679, - [1335] = 682, - [1336] = 755, - [1337] = 596, - [1338] = 672, - [1339] = 684, - [1340] = 596, - [1341] = 668, - [1342] = 680, - [1343] = 672, - [1344] = 677, - [1345] = 676, - [1346] = 675, - [1347] = 674, - [1348] = 669, - [1349] = 673, - [1350] = 596, - [1351] = 678, - [1352] = 670, - [1353] = 596, - [1354] = 596, - [1355] = 755, - [1356] = 755, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 1368, - [1369] = 1367, - [1370] = 1370, - [1371] = 1363, - [1372] = 1365, + [749] = 579, + [750] = 566, + [751] = 566, + [752] = 752, + [753] = 554, + [754] = 554, + [755] = 564, + [756] = 178, + [757] = 553, + [758] = 560, + [759] = 560, + [760] = 553, + [761] = 558, + [762] = 560, + [763] = 553, + [764] = 764, + [765] = 554, + [766] = 766, + [767] = 564, + [768] = 566, + [769] = 566, + [770] = 554, + [771] = 553, + [772] = 558, + [773] = 560, + [774] = 564, + [775] = 558, + [776] = 564, + [777] = 553, + [778] = 566, + [779] = 560, + [780] = 554, + [781] = 178, + [782] = 568, + [783] = 764, + [784] = 566, + [785] = 766, + [786] = 742, + [787] = 566, + [788] = 554, + [789] = 789, + [790] = 764, + [791] = 553, + [792] = 558, + [793] = 560, + [794] = 579, + [795] = 564, + [796] = 796, + [797] = 797, + [798] = 554, + [799] = 799, + [800] = 554, + [801] = 553, + [802] = 802, + [803] = 178, + [804] = 558, + [805] = 560, + [806] = 806, + [807] = 566, + [808] = 808, + [809] = 554, + [810] = 564, + [811] = 742, + [812] = 566, + [813] = 579, + [814] = 554, + [815] = 579, + [816] = 766, + [817] = 553, + [818] = 579, + [819] = 558, + [820] = 560, + [821] = 553, + [822] = 558, + [823] = 742, + [824] = 560, + [825] = 766, + [826] = 564, + [827] = 564, + [828] = 184, + [829] = 764, + [830] = 185, + [831] = 566, + [832] = 178, + [833] = 566, + [834] = 554, + [835] = 553, + [836] = 558, + [837] = 564, + [838] = 560, + [839] = 564, + [840] = 766, + [841] = 564, + [842] = 742, + [843] = 178, + [844] = 560, + [845] = 558, + [846] = 846, + [847] = 553, + [848] = 848, + [849] = 554, + [850] = 566, + [851] = 764, + [852] = 560, + [853] = 558, + [854] = 766, + [855] = 566, + [856] = 764, + [857] = 579, + [858] = 554, + [859] = 564, + [860] = 570, + [861] = 742, + [862] = 572, + [863] = 553, + [864] = 558, + [865] = 560, + [866] = 577, + [867] = 574, + [868] = 573, + [869] = 553, + [870] = 558, + [871] = 560, + [872] = 573, + [873] = 766, + [874] = 764, + [875] = 568, + [876] = 570, + [877] = 764, + [878] = 566, + [879] = 806, + [880] = 579, + [881] = 554, + [882] = 742, + [883] = 553, + [884] = 554, + [885] = 560, + [886] = 572, + [887] = 577, + [888] = 572, + [889] = 564, + [890] = 766, + [891] = 742, + [892] = 764, + [893] = 572, + [894] = 185, + [895] = 764, + [896] = 577, + [897] = 806, + [898] = 766, + [899] = 574, + [900] = 742, + [901] = 573, + [902] = 764, + [903] = 184, + [904] = 579, + [905] = 766, + [906] = 579, + [907] = 564, + [908] = 184, + [909] = 579, + [910] = 742, + [911] = 572, + [912] = 560, + [913] = 558, + [914] = 566, + [915] = 553, + [916] = 185, + [917] = 577, + [918] = 574, + [919] = 573, + [920] = 806, + [921] = 554, + [922] = 764, + [923] = 554, + [924] = 742, + [925] = 568, + [926] = 566, + [927] = 553, + [928] = 558, + [929] = 574, + [930] = 570, + [931] = 568, + [932] = 178, + [933] = 742, + [934] = 570, + [935] = 564, + [936] = 564, + [937] = 572, + [938] = 560, + [939] = 178, + [940] = 558, + [941] = 553, + [942] = 577, + [943] = 574, + [944] = 573, + [945] = 766, + [946] = 766, + [947] = 806, + [948] = 184, + [949] = 554, + [950] = 566, + [951] = 579, + [952] = 185, + [953] = 568, + [954] = 742, + [955] = 566, + [956] = 178, + [957] = 185, + [958] = 764, + [959] = 184, + [960] = 564, + [961] = 570, + [962] = 742, + [963] = 579, + [964] = 560, + [965] = 558, + [966] = 553, + [967] = 554, + [968] = 766, + [969] = 766, + [970] = 579, + [971] = 742, + [972] = 570, + [973] = 566, + [974] = 568, + [975] = 564, + [976] = 764, + [977] = 573, + [978] = 574, + [979] = 577, + [980] = 579, + [981] = 579, + [982] = 766, + [983] = 560, + [984] = 558, + [985] = 806, + [986] = 553, + [987] = 178, + [988] = 764, + [989] = 579, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 991, + [994] = 991, + [995] = 991, + [996] = 566, + [997] = 992, + [998] = 992, + [999] = 570, + [1000] = 568, + [1001] = 992, + [1002] = 991, + [1003] = 991, + [1004] = 1004, + [1005] = 572, + [1006] = 991, + [1007] = 766, + [1008] = 991, + [1009] = 806, + [1010] = 573, + [1011] = 574, + [1012] = 577, + [1013] = 991, + [1014] = 991, + [1015] = 185, + [1016] = 992, + [1017] = 572, + [1018] = 742, + [1019] = 992, + [1020] = 766, + [1021] = 991, + [1022] = 991, + [1023] = 991, + [1024] = 991, + [1025] = 806, + [1026] = 579, + [1027] = 184, + [1028] = 766, + [1029] = 764, + [1030] = 991, + [1031] = 991, + [1032] = 991, + [1033] = 185, + [1034] = 806, + [1035] = 991, + [1036] = 566, + [1037] = 992, + [1038] = 577, + [1039] = 742, + [1040] = 992, + [1041] = 764, + [1042] = 992, + [1043] = 564, + [1044] = 991, + [1045] = 184, + [1046] = 991, + [1047] = 991, + [1048] = 574, + [1049] = 554, + [1050] = 991, + [1051] = 764, + [1052] = 573, + [1053] = 766, + [1054] = 991, + [1055] = 766, + [1056] = 991, + [1057] = 992, + [1058] = 992, + [1059] = 990, + [1060] = 1060, + [1061] = 185, + [1062] = 553, + [1063] = 991, + [1064] = 992, + [1065] = 991, + [1066] = 766, + [1067] = 991, + [1068] = 806, + [1069] = 554, + [1070] = 992, + [1071] = 991, + [1072] = 991, + [1073] = 558, + [1074] = 992, + [1075] = 579, + [1076] = 766, + [1077] = 992, + [1078] = 742, + [1079] = 570, + [1080] = 568, + [1081] = 178, + [1082] = 742, + [1083] = 991, + [1084] = 570, + [1085] = 806, + [1086] = 579, + [1087] = 806, + [1088] = 568, + [1089] = 991, + [1090] = 764, + [1091] = 573, + [1092] = 574, + [1093] = 577, + [1094] = 742, + [1095] = 568, + [1096] = 742, + [1097] = 570, + [1098] = 572, + [1099] = 560, + [1100] = 553, + [1101] = 558, + [1102] = 766, + [1103] = 566, + [1104] = 742, + [1105] = 1105, + [1106] = 178, + [1107] = 991, + [1108] = 990, + [1109] = 1060, + [1110] = 991, + [1111] = 574, + [1112] = 564, + [1113] = 742, + [1114] = 570, + [1115] = 764, + [1116] = 568, + [1117] = 764, + [1118] = 184, + [1119] = 573, + [1120] = 991, + [1121] = 991, + [1122] = 992, + [1123] = 991, + [1124] = 764, + [1125] = 991, + [1126] = 554, + [1127] = 991, + [1128] = 178, + [1129] = 574, + [1130] = 577, + [1131] = 992, + [1132] = 992, + [1133] = 579, + [1134] = 991, + [1135] = 991, + [1136] = 991, + [1137] = 991, + [1138] = 184, + [1139] = 992, + [1140] = 991, + [1141] = 992, + [1142] = 572, + [1143] = 992, + [1144] = 564, + [1145] = 764, + [1146] = 991, + [1147] = 573, + [1148] = 579, + [1149] = 560, + [1150] = 1060, + [1151] = 992, + [1152] = 570, + [1153] = 568, + [1154] = 558, + [1155] = 806, + [1156] = 991, + [1157] = 553, + [1158] = 990, + [1159] = 579, + [1160] = 577, + [1161] = 570, + [1162] = 185, + [1163] = 553, + [1164] = 178, + [1165] = 558, + [1166] = 560, + [1167] = 568, + [1168] = 573, + [1169] = 574, + [1170] = 579, + [1171] = 577, + [1172] = 560, + [1173] = 572, + [1174] = 572, + [1175] = 572, + [1176] = 577, + [1177] = 572, + [1178] = 566, + [1179] = 577, + [1180] = 574, + [1181] = 178, + [1182] = 573, + [1183] = 564, + [1184] = 574, + [1185] = 573, + [1186] = 806, + [1187] = 572, + [1188] = 568, + [1189] = 570, + [1190] = 806, + [1191] = 1060, + [1192] = 991, + [1193] = 1193, + [1194] = 992, + [1195] = 991, + [1196] = 991, + [1197] = 992, + [1198] = 568, + [1199] = 570, + [1200] = 577, + [1201] = 574, + [1202] = 573, + [1203] = 554, + [1204] = 572, + [1205] = 766, + [1206] = 577, + [1207] = 178, + [1208] = 574, + [1209] = 573, + [1210] = 572, + [1211] = 184, + [1212] = 577, + [1213] = 574, + [1214] = 572, + [1215] = 573, + [1216] = 579, + [1217] = 568, + [1218] = 570, + [1219] = 570, + [1220] = 560, + [1221] = 568, + [1222] = 570, + [1223] = 184, + [1224] = 568, + [1225] = 573, + [1226] = 574, + [1227] = 577, + [1228] = 558, + [1229] = 185, + [1230] = 572, + [1231] = 564, + [1232] = 577, + [1233] = 574, + [1234] = 184, + [1235] = 553, + [1236] = 573, + [1237] = 185, + [1238] = 764, + [1239] = 566, + [1240] = 178, + [1241] = 568, + [1242] = 570, + [1243] = 185, + [1244] = 178, + [1245] = 766, + [1246] = 572, + [1247] = 568, + [1248] = 577, + [1249] = 572, + [1250] = 184, + [1251] = 574, + [1252] = 573, + [1253] = 577, + [1254] = 574, + [1255] = 573, + [1256] = 579, + [1257] = 178, + [1258] = 742, + [1259] = 570, + [1260] = 568, + [1261] = 568, + [1262] = 184, + [1263] = 577, + [1264] = 568, + [1265] = 570, + [1266] = 806, + [1267] = 766, + [1268] = 570, + [1269] = 573, + [1270] = 554, + [1271] = 574, + [1272] = 577, + [1273] = 185, + [1274] = 572, + [1275] = 806, + [1276] = 564, + [1277] = 806, + [1278] = 764, + [1279] = 570, + [1280] = 806, + [1281] = 579, + [1282] = 806, + [1283] = 579, + [1284] = 766, + [1285] = 742, + [1286] = 554, + [1287] = 742, + [1288] = 560, + [1289] = 764, + [1290] = 558, + [1291] = 579, + [1292] = 766, + [1293] = 764, + [1294] = 764, + [1295] = 806, + [1296] = 806, + [1297] = 553, + [1298] = 566, + [1299] = 742, + [1300] = 572, + [1301] = 742, + [1302] = 806, + [1303] = 574, + [1304] = 185, + [1305] = 573, + [1306] = 184, + [1307] = 572, + [1308] = 573, + [1309] = 806, + [1310] = 574, + [1311] = 573, + [1312] = 764, + [1313] = 766, + [1314] = 806, + [1315] = 766, + [1316] = 577, + [1317] = 577, + [1318] = 572, + [1319] = 742, + [1320] = 570, + [1321] = 568, + [1322] = 185, + [1323] = 742, + [1324] = 184, + [1325] = 764, + [1326] = 185, + [1327] = 572, + [1328] = 568, + [1329] = 184, + [1330] = 573, + [1331] = 570, + [1332] = 806, + [1333] = 570, + [1334] = 185, + [1335] = 579, + [1336] = 573, + [1337] = 574, + [1338] = 577, + [1339] = 568, + [1340] = 579, + [1341] = 572, + [1342] = 568, + [1343] = 1343, + [1344] = 570, + [1345] = 185, + [1346] = 577, + [1347] = 574, + [1348] = 570, + [1349] = 568, + [1350] = 574, + [1351] = 1351, + [1352] = 806, + [1353] = 572, + [1354] = 577, + [1355] = 806, + [1356] = 184, + [1357] = 574, + [1358] = 573, + [1359] = 570, + [1360] = 568, + [1361] = 577, + [1362] = 573, + [1363] = 568, + [1364] = 806, + [1365] = 577, + [1366] = 574, + [1367] = 573, + [1368] = 572, + [1369] = 806, + [1370] = 574, + [1371] = 572, + [1372] = 570, [1373] = 1373, [1374] = 1374, [1375] = 1375, @@ -2822,1542 +2807,1783 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1382] = 1382, [1383] = 1383, [1384] = 1384, - [1385] = 1385, - [1386] = 1386, - [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1382, - [1391] = 1382, - [1392] = 1387, - [1393] = 1387, - [1394] = 1382, - [1395] = 1382, - [1396] = 1387, - [1397] = 1397, - [1398] = 1387, - [1399] = 1387, - [1400] = 1387, - [1401] = 1387, - [1402] = 1387, - [1403] = 1387, - [1404] = 1404, - [1405] = 1387, - [1406] = 1387, - [1407] = 1387, - [1408] = 1387, - [1409] = 1387, - [1410] = 1387, - [1411] = 1387, - [1412] = 1387, - [1413] = 1387, - [1414] = 1378, - [1415] = 1415, - [1416] = 1387, - [1417] = 1387, - [1418] = 1387, - [1419] = 1387, - [1420] = 1387, - [1421] = 1387, - [1422] = 1422, - [1423] = 1387, - [1424] = 1424, - [1425] = 1387, - [1426] = 1387, - [1427] = 1427, - [1428] = 1428, - [1429] = 1387, - [1430] = 1387, - [1431] = 1387, - [1432] = 1432, - [1433] = 1387, - [1434] = 1387, - [1435] = 1435, - [1436] = 1387, - [1437] = 1387, - [1438] = 1438, - [1439] = 1439, - [1440] = 1387, - [1441] = 1386, - [1442] = 1387, - [1443] = 1385, - [1444] = 1387, - [1445] = 1387, - [1446] = 1378, - [1447] = 1386, - [1448] = 1385, - [1449] = 1387, - [1450] = 1387, - [1451] = 1386, - [1452] = 1385, - [1453] = 1378, - [1454] = 1386, - [1455] = 1385, + [1385] = 1384, + [1386] = 1384, + [1387] = 1384, + [1388] = 1384, + [1389] = 1384, + [1390] = 1390, + [1391] = 1384, + [1392] = 1384, + [1393] = 1384, + [1394] = 1384, + [1395] = 1384, + [1396] = 1384, + [1397] = 1384, + [1398] = 1384, + [1399] = 1384, + [1400] = 1384, + [1401] = 1384, + [1402] = 1384, + [1403] = 1384, + [1404] = 1384, + [1405] = 1384, + [1406] = 1384, + [1407] = 1384, + [1408] = 1384, + [1409] = 1384, + [1410] = 1384, + [1411] = 1384, + [1412] = 1384, + [1413] = 1384, + [1414] = 1384, + [1415] = 1384, + [1416] = 1384, + [1417] = 1384, + [1418] = 1384, + [1419] = 1384, + [1420] = 1384, + [1421] = 1384, + [1422] = 1384, + [1423] = 1384, + [1424] = 1384, + [1425] = 1384, + [1426] = 1384, + [1427] = 1384, + [1428] = 1384, + [1429] = 1384, + [1430] = 1382, + [1431] = 1379, + [1432] = 1384, + [1433] = 1384, + [1434] = 1384, + [1435] = 1384, + [1436] = 1384, + [1437] = 1384, + [1438] = 1384, + [1439] = 1384, + [1440] = 1384, + [1441] = 1384, + [1442] = 1384, + [1443] = 1384, + [1444] = 1381, + [1445] = 1384, + [1446] = 1384, + [1447] = 1384, + [1448] = 1384, + [1449] = 1384, + [1450] = 1384, + [1451] = 1384, + [1452] = 1452, + [1453] = 1384, + [1454] = 1454, + [1455] = 1455, [1456] = 1456, - [1457] = 1387, - [1458] = 1387, - [1459] = 1387, - [1460] = 1387, + [1457] = 1457, + [1458] = 1458, + [1459] = 1459, + [1460] = 1460, [1461] = 1461, [1462] = 1462, - [1463] = 1387, - [1464] = 1387, - [1465] = 1387, + [1463] = 1463, + [1464] = 1464, + [1465] = 1465, [1466] = 1466, - [1467] = 1378, - [1468] = 1386, + [1467] = 1467, + [1468] = 1464, [1469] = 1469, - [1470] = 1432, + [1470] = 1465, [1471] = 1471, - [1472] = 1382, - [1473] = 1473, - [1474] = 1474, - [1475] = 1432, + [1472] = 1456, + [1473] = 1465, + [1474] = 1464, + [1475] = 1456, [1476] = 1476, - [1477] = 1477, - [1478] = 676, - [1479] = 1378, - [1480] = 1480, - [1481] = 1378, - [1482] = 1432, - [1483] = 1370, - [1484] = 1415, - [1485] = 1378, - [1486] = 1385, - [1487] = 1386, - [1488] = 1382, - [1489] = 1378, - [1490] = 1490, - [1491] = 1378, - [1492] = 1385, - [1493] = 1386, - [1494] = 1382, - [1495] = 1382, - [1496] = 1385, - [1497] = 1386, + [1477] = 1456, + [1478] = 1478, + [1479] = 1464, + [1480] = 1465, + [1481] = 1481, + [1482] = 1464, + [1483] = 1456, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1462, + [1489] = 1489, + [1490] = 1465, + [1491] = 1491, + [1492] = 1492, + [1493] = 1462, + [1494] = 1462, + [1495] = 1495, + [1496] = 1496, + [1497] = 1497, [1498] = 1498, - [1499] = 1382, - [1500] = 1385, - [1501] = 1432, - [1502] = 1386, - [1503] = 1385, - [1504] = 1476, - [1505] = 1385, - [1506] = 1432, - [1507] = 1477, - [1508] = 1476, - [1509] = 1473, - [1510] = 680, - [1511] = 1432, - [1512] = 1474, - [1513] = 1473, - [1514] = 673, - [1515] = 1477, - [1516] = 1474, - [1517] = 1469, - [1518] = 1385, - [1519] = 1519, - [1520] = 1520, - [1521] = 1382, - [1522] = 1382, - [1523] = 1523, - [1524] = 1524, - [1525] = 669, - [1526] = 1526, - [1527] = 1386, - [1528] = 670, - [1529] = 1378, - [1530] = 1385, - [1531] = 1386, - [1532] = 678, - [1533] = 1382, - [1534] = 1386, - [1535] = 1432, - [1536] = 684, - [1537] = 1537, - [1538] = 668, + [1499] = 1462, + [1500] = 1498, + [1501] = 564, + [1502] = 1456, + [1503] = 1503, + [1504] = 1465, + [1505] = 1462, + [1506] = 1465, + [1507] = 1507, + [1508] = 1465, + [1509] = 554, + [1510] = 1510, + [1511] = 1511, + [1512] = 1464, + [1513] = 1456, + [1514] = 1456, + [1515] = 566, + [1516] = 1516, + [1517] = 553, + [1518] = 1464, + [1519] = 1456, + [1520] = 1462, + [1521] = 1465, + [1522] = 558, + [1523] = 1464, + [1524] = 1464, + [1525] = 1525, + [1526] = 560, + [1527] = 1498, + [1528] = 1484, + [1529] = 1390, + [1530] = 1498, + [1531] = 1462, + [1532] = 1532, + [1533] = 1465, + [1534] = 1462, + [1535] = 1456, + [1536] = 1462, + [1537] = 1498, + [1538] = 1464, [1539] = 1539, - [1540] = 672, - [1541] = 594, - [1542] = 1542, - [1543] = 682, - [1544] = 1544, - [1545] = 1498, - [1546] = 1498, - [1547] = 1432, - [1548] = 683, - [1549] = 1378, - [1550] = 679, - [1551] = 1378, - [1552] = 677, - [1553] = 676, - [1554] = 1432, - [1555] = 1555, - [1556] = 1556, - [1557] = 675, - [1558] = 1469, + [1540] = 1540, + [1541] = 572, + [1542] = 1511, + [1543] = 553, + [1544] = 1498, + [1545] = 560, + [1546] = 564, + [1547] = 1510, + [1548] = 1498, + [1549] = 553, + [1550] = 558, + [1551] = 558, + [1552] = 553, + [1553] = 1511, + [1554] = 1532, + [1555] = 1503, + [1556] = 742, + [1557] = 1498, + [1558] = 1507, [1559] = 1559, - [1560] = 674, - [1561] = 594, - [1562] = 594, - [1563] = 670, - [1564] = 1564, - [1565] = 1378, - [1566] = 1555, - [1567] = 673, - [1568] = 674, - [1569] = 669, - [1570] = 1570, - [1571] = 1571, - [1572] = 1544, - [1573] = 668, - [1574] = 683, - [1575] = 684, - [1576] = 682, - [1577] = 672, - [1578] = 678, - [1579] = 1542, - [1580] = 1580, - [1581] = 684, - [1582] = 1582, - [1583] = 668, - [1584] = 1520, - [1585] = 680, - [1586] = 1524, - [1587] = 672, - [1588] = 683, - [1589] = 678, - [1590] = 679, - [1591] = 677, - [1592] = 1386, - [1593] = 676, - [1594] = 675, - [1595] = 1385, - [1596] = 680, - [1597] = 675, - [1598] = 684, - [1599] = 668, + [1560] = 560, + [1561] = 554, + [1562] = 558, + [1563] = 560, + [1564] = 764, + [1565] = 1462, + [1566] = 558, + [1567] = 553, + [1568] = 1462, + [1569] = 1465, + [1570] = 554, + [1571] = 1532, + [1572] = 566, + [1573] = 1573, + [1574] = 1503, + [1575] = 554, + [1576] = 1498, + [1577] = 1577, + [1578] = 566, + [1579] = 1579, + [1580] = 566, + [1581] = 1581, + [1582] = 564, + [1583] = 560, + [1584] = 1456, + [1585] = 1585, + [1586] = 554, + [1587] = 1462, + [1588] = 579, + [1589] = 1589, + [1590] = 1464, + [1591] = 1465, + [1592] = 1592, + [1593] = 1464, + [1594] = 566, + [1595] = 1595, + [1596] = 1516, + [1597] = 564, + [1598] = 1465, + [1599] = 1456, [1600] = 1600, - [1601] = 594, - [1602] = 674, - [1603] = 673, - [1604] = 1604, - [1605] = 1386, - [1606] = 1524, - [1607] = 1520, + [1601] = 1516, + [1602] = 1602, + [1603] = 766, + [1604] = 1507, + [1605] = 1456, + [1606] = 1464, + [1607] = 564, [1608] = 1608, - [1609] = 1385, - [1610] = 1610, - [1611] = 1432, - [1612] = 1556, - [1613] = 669, - [1614] = 670, - [1615] = 1615, - [1616] = 1555, - [1617] = 1556, - [1618] = 1618, - [1619] = 676, - [1620] = 683, - [1621] = 670, - [1622] = 669, - [1623] = 673, - [1624] = 1382, - [1625] = 1526, - [1626] = 1626, - [1627] = 674, - [1628] = 675, - [1629] = 1382, - [1630] = 676, - [1631] = 679, - [1632] = 679, - [1633] = 680, - [1634] = 755, - [1635] = 596, - [1636] = 677, - [1637] = 676, - [1638] = 675, - [1639] = 674, - [1640] = 677, - [1641] = 679, - [1642] = 682, - [1643] = 673, - [1644] = 682, - [1645] = 1432, - [1646] = 668, - [1647] = 678, - [1648] = 684, - [1649] = 678, - [1650] = 683, - [1651] = 672, - [1652] = 677, - [1653] = 672, - [1654] = 1526, - [1655] = 594, - [1656] = 1656, - [1657] = 670, - [1658] = 682, - [1659] = 1378, - [1660] = 1544, - [1661] = 1542, - [1662] = 1432, - [1663] = 669, - [1664] = 680, - [1665] = 1665, - [1666] = 755, - [1667] = 755, - [1668] = 755, - [1669] = 673, - [1670] = 1665, - [1671] = 678, - [1672] = 1665, - [1673] = 1673, - [1674] = 1673, - [1675] = 1665, - [1676] = 682, - [1677] = 1665, - [1678] = 1665, - [1679] = 1673, - [1680] = 679, - [1681] = 674, - [1682] = 1665, - [1683] = 1665, - [1684] = 1665, - [1685] = 683, - [1686] = 680, + [1609] = 1498, + [1610] = 1510, + [1611] = 1608, + [1612] = 764, + [1613] = 1581, + [1614] = 1579, + [1615] = 1573, + [1616] = 764, + [1617] = 566, + [1618] = 1464, + [1619] = 1559, + [1620] = 564, + [1621] = 579, + [1622] = 560, + [1623] = 1462, + [1624] = 554, + [1625] = 1625, + [1626] = 806, + [1627] = 553, + [1628] = 1600, + [1629] = 1585, + [1630] = 564, + [1631] = 558, + [1632] = 1462, + [1633] = 1465, + [1634] = 560, + [1635] = 742, + [1636] = 1636, + [1637] = 558, + [1638] = 560, + [1639] = 558, + [1640] = 1640, + [1641] = 1498, + [1642] = 766, + [1643] = 764, + [1644] = 766, + [1645] = 553, + [1646] = 1646, + [1647] = 1647, + [1648] = 553, + [1649] = 579, + [1650] = 554, + [1651] = 1651, + [1652] = 570, + [1653] = 579, + [1654] = 572, + [1655] = 568, + [1656] = 1573, + [1657] = 1559, + [1658] = 554, + [1659] = 1659, + [1660] = 1456, + [1661] = 566, + [1662] = 554, + [1663] = 1464, + [1664] = 1664, + [1665] = 1608, + [1666] = 1600, + [1667] = 573, + [1668] = 574, + [1669] = 1581, + [1670] = 1579, + [1671] = 1671, + [1672] = 577, + [1673] = 553, + [1674] = 558, + [1675] = 1675, + [1676] = 579, + [1677] = 742, + [1678] = 564, + [1679] = 1585, + [1680] = 566, + [1681] = 1456, + [1682] = 560, + [1683] = 1683, + [1684] = 1684, + [1685] = 764, + [1686] = 742, [1687] = 1687, - [1688] = 1665, - [1689] = 675, - [1690] = 676, - [1691] = 1673, - [1692] = 1673, - [1693] = 669, - [1694] = 1665, - [1695] = 1673, - [1696] = 670, - [1697] = 677, - [1698] = 1673, - [1699] = 673, - [1700] = 1673, - [1701] = 1673, - [1702] = 1665, - [1703] = 684, - [1704] = 1673, - [1705] = 1665, - [1706] = 1665, - [1707] = 674, - [1708] = 675, - [1709] = 1673, - [1710] = 682, - [1711] = 1432, - [1712] = 676, - [1713] = 672, - [1714] = 677, - [1715] = 679, - [1716] = 670, - [1717] = 1673, - [1718] = 669, - [1719] = 680, - [1720] = 680, - [1721] = 1665, - [1722] = 1673, - [1723] = 1665, - [1724] = 1665, - [1725] = 669, - [1726] = 683, - [1727] = 1665, - [1728] = 1673, - [1729] = 668, - [1730] = 1665, - [1731] = 1673, - [1732] = 1665, - [1733] = 1673, - [1734] = 1673, - [1735] = 1665, - [1736] = 596, - [1737] = 684, - [1738] = 1673, - [1739] = 1673, - [1740] = 1665, - [1741] = 1432, - [1742] = 682, - [1743] = 1673, - [1744] = 670, - [1745] = 1745, - [1746] = 1673, - [1747] = 1665, - [1748] = 678, - [1749] = 672, - [1750] = 1665, - [1751] = 1673, - [1752] = 1665, - [1753] = 679, - [1754] = 1673, - [1755] = 673, - [1756] = 1665, - [1757] = 672, - [1758] = 755, - [1759] = 678, - [1760] = 1673, - [1761] = 1665, - [1762] = 1665, - [1763] = 1673, - [1764] = 1673, - [1765] = 1665, - [1766] = 1673, - [1767] = 674, - [1768] = 1673, - [1769] = 684, - [1770] = 1673, - [1771] = 675, - [1772] = 1673, - [1773] = 676, - [1774] = 1665, - [1775] = 668, - [1776] = 1665, - [1777] = 594, - [1778] = 1665, - [1779] = 1673, - [1780] = 596, - [1781] = 1665, - [1782] = 683, - [1783] = 1665, - [1784] = 679, - [1785] = 1673, - [1786] = 677, - [1787] = 676, - [1788] = 1665, - [1789] = 1665, - [1790] = 1673, - [1791] = 1673, - [1792] = 677, - [1793] = 1673, - [1794] = 1665, - [1795] = 668, - [1796] = 1665, - [1797] = 675, - [1798] = 1665, - [1799] = 1673, - [1800] = 1673, - [1801] = 674, - [1802] = 1673, - [1803] = 1665, - [1804] = 1673, - [1805] = 594, - [1806] = 596, - [1807] = 1673, - [1808] = 1665, - [1809] = 594, - [1810] = 1610, - [1811] = 673, - [1812] = 1673, - [1813] = 678, - [1814] = 1665, - [1815] = 1673, - [1816] = 1673, - [1817] = 670, - [1818] = 1665, - [1819] = 669, - [1820] = 672, - [1821] = 680, - [1822] = 682, - [1823] = 683, - [1824] = 1673, - [1825] = 668, - [1826] = 1665, - [1827] = 1673, - [1828] = 1665, - [1829] = 1673, - [1830] = 1665, - [1831] = 596, - [1832] = 1673, - [1833] = 1665, - [1834] = 1571, - [1835] = 684, - [1836] = 594, - [1837] = 1673, - [1838] = 1665, - [1839] = 670, - [1840] = 673, - [1841] = 1841, - [1842] = 674, - [1843] = 594, - [1844] = 596, - [1845] = 1845, - [1846] = 675, - [1847] = 1845, - [1848] = 669, - [1849] = 680, - [1850] = 682, - [1851] = 676, - [1852] = 677, - [1853] = 755, - [1854] = 679, - [1855] = 684, - [1856] = 668, - [1857] = 594, - [1858] = 1845, - [1859] = 684, - [1860] = 678, - [1861] = 682, - [1862] = 594, - [1863] = 680, - [1864] = 1864, - [1865] = 669, - [1866] = 670, - [1867] = 672, - [1868] = 674, - [1869] = 675, - [1870] = 676, - [1871] = 677, - [1872] = 679, - [1873] = 682, - [1874] = 683, - [1875] = 680, - [1876] = 669, - [1877] = 672, - [1878] = 670, - [1879] = 668, - [1880] = 683, - [1881] = 684, - [1882] = 684, - [1883] = 678, - [1884] = 673, - [1885] = 668, - [1886] = 594, - [1887] = 672, - [1888] = 596, - [1889] = 674, - [1890] = 675, - [1891] = 676, - [1892] = 677, - [1893] = 679, - [1894] = 682, - [1895] = 683, - [1896] = 683, - [1897] = 680, - [1898] = 755, - [1899] = 669, - [1900] = 670, - [1901] = 677, - [1902] = 676, - [1903] = 675, - [1904] = 755, - [1905] = 674, - [1906] = 673, - [1907] = 668, - [1908] = 684, - [1909] = 678, - [1910] = 1910, - [1911] = 1911, - [1912] = 678, - [1913] = 672, - [1914] = 670, - [1915] = 673, - [1916] = 669, - [1917] = 1845, - [1918] = 672, - [1919] = 674, - [1920] = 678, - [1921] = 596, - [1922] = 675, - [1923] = 680, - [1924] = 1924, - [1925] = 594, - [1926] = 676, - [1927] = 673, - [1928] = 677, - [1929] = 679, - [1930] = 755, - [1931] = 679, - [1932] = 682, - [1933] = 683, - [1934] = 668, - [1935] = 596, - [1936] = 755, - [1937] = 672, - [1938] = 673, - [1939] = 674, - [1940] = 672, - [1941] = 673, - [1942] = 678, - [1943] = 668, - [1944] = 670, - [1945] = 669, - [1946] = 673, - [1947] = 674, - [1948] = 680, - [1949] = 675, - [1950] = 676, - [1951] = 677, - [1952] = 679, - [1953] = 682, - [1954] = 678, - [1955] = 676, - [1956] = 682, - [1957] = 678, - [1958] = 684, - [1959] = 668, - [1960] = 679, - [1961] = 677, - [1962] = 670, - [1963] = 672, - [1964] = 669, - [1965] = 594, - [1966] = 594, - [1967] = 684, - [1968] = 668, - [1969] = 672, - [1970] = 670, - [1971] = 669, - [1972] = 596, - [1973] = 680, - [1974] = 594, - [1975] = 755, - [1976] = 683, - [1977] = 594, - [1978] = 755, - [1979] = 683, - [1980] = 682, - [1981] = 683, - [1982] = 682, - [1983] = 684, - [1984] = 755, - [1985] = 679, - [1986] = 674, - [1987] = 677, - [1988] = 676, - [1989] = 675, - [1990] = 755, - [1991] = 676, - [1992] = 675, - [1993] = 675, - [1994] = 596, - [1995] = 674, - [1996] = 677, - [1997] = 680, - [1998] = 679, - [1999] = 1999, - [2000] = 683, - [2001] = 596, - [2002] = 673, - [2003] = 678, - [2004] = 684, - [2005] = 668, - [2006] = 596, - [2007] = 670, - [2008] = 596, - [2009] = 680, - [2010] = 669, - [2011] = 755, - [2012] = 755, - [2013] = 596, - [2014] = 675, - [2015] = 596, - [2016] = 755, - [2017] = 683, - [2018] = 596, - [2019] = 674, - [2020] = 2020, - [2021] = 596, - [2022] = 755, + [1688] = 1465, + [1689] = 766, + [1690] = 1498, + [1691] = 566, + [1692] = 766, + [1693] = 742, + [1694] = 564, + [1695] = 1498, + [1696] = 742, + [1697] = 553, + [1698] = 806, + [1699] = 568, + [1700] = 570, + [1701] = 558, + [1702] = 570, + [1703] = 564, + [1704] = 560, + [1705] = 554, + [1706] = 766, + [1707] = 1707, + [1708] = 566, + [1709] = 564, + [1710] = 806, + [1711] = 766, + [1712] = 1498, + [1713] = 554, + [1714] = 579, + [1715] = 766, + [1716] = 564, + [1717] = 764, + [1718] = 572, + [1719] = 573, + [1720] = 553, + [1721] = 566, + [1722] = 579, + [1723] = 574, + [1724] = 572, + [1725] = 560, + [1726] = 558, + [1727] = 1687, + [1728] = 766, + [1729] = 560, + [1730] = 553, + [1731] = 554, + [1732] = 558, + [1733] = 577, + [1734] = 558, + [1735] = 560, + [1736] = 560, + [1737] = 554, + [1738] = 564, + [1739] = 742, + [1740] = 553, + [1741] = 572, + [1742] = 577, + [1743] = 568, + [1744] = 554, + [1745] = 806, + [1746] = 1640, + [1747] = 574, + [1748] = 742, + [1749] = 566, + [1750] = 579, + [1751] = 764, + [1752] = 573, + [1753] = 566, + [1754] = 577, + [1755] = 574, + [1756] = 573, + [1757] = 742, + [1758] = 568, + [1759] = 570, + [1760] = 564, + [1761] = 566, + [1762] = 553, + [1763] = 806, + [1764] = 558, + [1765] = 572, + [1766] = 764, + [1767] = 577, + [1768] = 574, + [1769] = 573, + [1770] = 1498, + [1771] = 579, + [1772] = 764, + [1773] = 568, + [1774] = 570, + [1775] = 579, + [1776] = 560, + [1777] = 1777, + [1778] = 1777, + [1779] = 568, + [1780] = 570, + [1781] = 560, + [1782] = 564, + [1783] = 558, + [1784] = 579, + [1785] = 806, + [1786] = 554, + [1787] = 568, + [1788] = 573, + [1789] = 574, + [1790] = 577, + [1791] = 572, + [1792] = 764, + [1793] = 1793, + [1794] = 554, + [1795] = 766, + [1796] = 742, + [1797] = 764, + [1798] = 573, + [1799] = 766, + [1800] = 570, + [1801] = 1801, + [1802] = 574, + [1803] = 766, + [1804] = 764, + [1805] = 742, + [1806] = 577, + [1807] = 579, + [1808] = 766, + [1809] = 764, + [1810] = 742, + [1811] = 553, + [1812] = 1812, + [1813] = 742, + [1814] = 764, + [1815] = 560, + [1816] = 572, + [1817] = 566, + [1818] = 566, + [1819] = 579, + [1820] = 1820, + [1821] = 1821, + [1822] = 806, + [1823] = 579, + [1824] = 564, + [1825] = 554, + [1826] = 558, + [1827] = 1777, + [1828] = 553, + [1829] = 558, + [1830] = 766, + [1831] = 566, + [1832] = 572, + [1833] = 577, + [1834] = 574, + [1835] = 742, + [1836] = 573, + [1837] = 568, + [1838] = 570, + [1839] = 566, + [1840] = 564, + [1841] = 554, + [1842] = 1777, + [1843] = 570, + [1844] = 568, + [1845] = 573, + [1846] = 574, + [1847] = 577, + [1848] = 553, + [1849] = 806, + [1850] = 572, + [1851] = 553, + [1852] = 558, + [1853] = 806, + [1854] = 564, + [1855] = 560, + [1856] = 579, + [1857] = 764, + [1858] = 572, + [1859] = 764, + [1860] = 572, + [1861] = 766, + [1862] = 742, + [1863] = 577, + [1864] = 574, + [1865] = 573, + [1866] = 568, + [1867] = 570, + [1868] = 806, + [1869] = 577, + [1870] = 742, + [1871] = 574, + [1872] = 573, + [1873] = 568, + [1874] = 570, + [1875] = 572, + [1876] = 577, + [1877] = 574, + [1878] = 766, + [1879] = 579, + [1880] = 573, + [1881] = 568, + [1882] = 570, + [1883] = 572, + [1884] = 577, + [1885] = 742, + [1886] = 574, + [1887] = 573, + [1888] = 568, + [1889] = 570, + [1890] = 806, + [1891] = 579, + [1892] = 806, + [1893] = 806, + [1894] = 766, + [1895] = 764, + [1896] = 764, + [1897] = 806, + [1898] = 766, + [1899] = 573, + [1900] = 568, + [1901] = 579, + [1902] = 570, + [1903] = 572, + [1904] = 742, + [1905] = 577, + [1906] = 574, + [1907] = 570, + [1908] = 806, + [1909] = 1909, + [1910] = 558, + [1911] = 564, + [1912] = 806, + [1913] = 572, + [1914] = 577, + [1915] = 574, + [1916] = 573, + [1917] = 1917, + [1918] = 568, + [1919] = 570, + [1920] = 572, + [1921] = 574, + [1922] = 573, + [1923] = 560, + [1924] = 577, + [1925] = 570, + [1926] = 572, + [1927] = 577, + [1928] = 574, + [1929] = 573, + [1930] = 806, + [1931] = 570, + [1932] = 577, + [1933] = 573, + [1934] = 568, + [1935] = 806, + [1936] = 572, + [1937] = 574, + [1938] = 568, + [1939] = 568, + [1940] = 1940, + [1941] = 1940, + [1942] = 1940, + [1943] = 1943, + [1944] = 1940, + [1945] = 1940, + [1946] = 1940, + [1947] = 1940, + [1948] = 1940, + [1949] = 1940, + [1950] = 1940, + [1951] = 1940, + [1952] = 1940, + [1953] = 1943, + [1954] = 1943, + [1955] = 1940, + [1956] = 1943, + [1957] = 1943, + [1958] = 1940, + [1959] = 1940, + [1960] = 1940, + [1961] = 1940, + [1962] = 1940, + [1963] = 1943, + [1964] = 1940, + [1965] = 1943, + [1966] = 1940, + [1967] = 1967, + [1968] = 1940, + [1969] = 1940, + [1970] = 1940, + [1971] = 1940, + [1972] = 1940, + [1973] = 1940, + [1974] = 1940, + [1975] = 1975, + [1976] = 1940, + [1977] = 1940, + [1978] = 1943, + [1979] = 1943, + [1980] = 1940, + [1981] = 1940, + [1982] = 1940, + [1983] = 1940, + [1984] = 1940, + [1985] = 1940, + [1986] = 1940, + [1987] = 1940, + [1988] = 1940, + [1989] = 1940, + [1990] = 1940, + [1991] = 1940, + [1992] = 1940, + [1993] = 1943, + [1994] = 1940, + [1995] = 1943, + [1996] = 1943, + [1997] = 1940, + [1998] = 1943, + [1999] = 1940, + [2000] = 1943, + [2001] = 1943, + [2002] = 1943, + [2003] = 1940, + [2004] = 1943, + [2005] = 1940, + [2006] = 1940, + [2007] = 1940, + [2008] = 1943, + [2009] = 1940, + [2010] = 1943, + [2011] = 1943, + [2012] = 1940, + [2013] = 1943, + [2014] = 1943, + [2015] = 1940, + [2016] = 1943, + [2017] = 1940, + [2018] = 1943, + [2019] = 1940, + [2020] = 1940, + [2021] = 1940, + [2022] = 2022, [2023] = 2023, [2024] = 2024, - [2025] = 2024, - [2026] = 2024, + [2025] = 2025, + [2026] = 2026, [2027] = 2027, - [2028] = 2024, - [2029] = 2024, - [2030] = 2024, - [2031] = 2024, - [2032] = 2024, - [2033] = 2024, - [2034] = 2024, - [2035] = 2024, - [2036] = 2024, - [2037] = 2024, - [2038] = 2024, - [2039] = 2024, - [2040] = 2024, - [2041] = 2024, - [2042] = 2024, - [2043] = 2024, - [2044] = 2024, - [2045] = 2024, - [2046] = 2024, - [2047] = 2024, - [2048] = 2048, - [2049] = 2024, - [2050] = 2050, - [2051] = 2051, - [2052] = 2052, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, + [2031] = 2031, + [2032] = 2032, + [2033] = 2033, + [2034] = 2034, + [2035] = 2035, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 2039, + [2040] = 2040, + [2041] = 2037, + [2042] = 2040, + [2043] = 2038, + [2044] = 2040, + [2045] = 2036, + [2046] = 2039, + [2047] = 2038, + [2048] = 2038, + [2049] = 2049, + [2050] = 2040, + [2051] = 2040, + [2052] = 2037, + [2053] = 2039, + [2054] = 2039, + [2055] = 2040, + [2056] = 2039, + [2057] = 2039, [2058] = 2058, - [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 2063, - [2065] = 2065, - [2066] = 2063, - [2067] = 2067, - [2068] = 2068, - [2069] = 2065, - [2070] = 2070, - [2071] = 2063, - [2072] = 2067, - [2073] = 2065, - [2074] = 2065, - [2075] = 2067, - [2076] = 2065, - [2077] = 2063, - [2078] = 2063, - [2079] = 2063, - [2080] = 2067, - [2081] = 2063, - [2082] = 2065, - [2083] = 2063, - [2084] = 2067, - [2085] = 2065, - [2086] = 2065, - [2087] = 2087, - [2088] = 2063, - [2089] = 2065, - [2090] = 2090, - [2091] = 2067, - [2092] = 2092, - [2093] = 2067, - [2094] = 2094, - [2095] = 2067, - [2096] = 2063, - [2097] = 2067, - [2098] = 2098, - [2099] = 2065, - [2100] = 2067, - [2101] = 2067, - [2102] = 2067, - [2103] = 2063, - [2104] = 2065, - [2105] = 2067, - [2106] = 2067, - [2107] = 2065, - [2108] = 2067, - [2109] = 2067, - [2110] = 2110, - [2111] = 2070, - [2112] = 2067, - [2113] = 2065, - [2114] = 2065, - [2115] = 2067, - [2116] = 2063, - [2117] = 2063, - [2118] = 2087, - [2119] = 2065, - [2120] = 2090, - [2121] = 2065, - [2122] = 2065, - [2123] = 2063, - [2124] = 2067, - [2125] = 2067, - [2126] = 2063, - [2127] = 2067, - [2128] = 2067, - [2129] = 2063, - [2130] = 2065, - [2131] = 2065, - [2132] = 2065, - [2133] = 2063, - [2134] = 2067, - [2135] = 2063, - [2136] = 2065, - [2137] = 2065, - [2138] = 2067, - [2139] = 2063, - [2140] = 2063, - [2141] = 2092, - [2142] = 2063, - [2143] = 2063, - [2144] = 2063, - [2145] = 2065, - [2146] = 2065, - [2147] = 2147, - [2148] = 2148, - [2149] = 2149, - [2150] = 2148, - [2151] = 2148, - [2152] = 2148, - [2153] = 2148, - [2154] = 2148, - [2155] = 2148, - [2156] = 2147, - [2157] = 2148, - [2158] = 2148, - [2159] = 2159, - [2160] = 2148, - [2161] = 2161, - [2162] = 2148, - [2163] = 2148, - [2164] = 2148, - [2165] = 2148, - [2166] = 2166, - [2167] = 2148, - [2168] = 2168, - [2169] = 2169, - [2170] = 2148, - [2171] = 2148, - [2172] = 2148, - [2173] = 2148, - [2174] = 2148, - [2175] = 2175, - [2176] = 2148, + [2059] = 2039, + [2060] = 2037, + [2061] = 2040, + [2062] = 2040, + [2063] = 2040, + [2064] = 2064, + [2065] = 2038, + [2066] = 2040, + [2067] = 2040, + [2068] = 2039, + [2069] = 2037, + [2070] = 2040, + [2071] = 2037, + [2072] = 2040, + [2073] = 2038, + [2074] = 2037, + [2075] = 2039, + [2076] = 2040, + [2077] = 2040, + [2078] = 2040, + [2079] = 2038, + [2080] = 2038, + [2081] = 2040, + [2082] = 2040, + [2083] = 2040, + [2084] = 2084, + [2085] = 2038, + [2086] = 2086, + [2087] = 2040, + [2088] = 2040, + [2089] = 2037, + [2090] = 2040, + [2091] = 2039, + [2092] = 2038, + [2093] = 2040, + [2094] = 2040, + [2095] = 2039, + [2096] = 2040, + [2097] = 2037, + [2098] = 2039, + [2099] = 2040, + [2100] = 2040, + [2101] = 2040, + [2102] = 2038, + [2103] = 2037, + [2104] = 2037, + [2105] = 2038, + [2106] = 2040, + [2107] = 2040, + [2108] = 2037, + [2109] = 2037, + [2110] = 2037, + [2111] = 2040, + [2112] = 2038, + [2113] = 2040, + [2114] = 2084, + [2115] = 2040, + [2116] = 2040, + [2117] = 2038, + [2118] = 2040, + [2119] = 2038, + [2120] = 2038, + [2121] = 2038, + [2122] = 2064, + [2123] = 2040, + [2124] = 2040, + [2125] = 2037, + [2126] = 2040, + [2127] = 2040, + [2128] = 2040, + [2129] = 2037, + [2130] = 2039, + [2131] = 2040, + [2132] = 2040, + [2133] = 2040, + [2134] = 2086, + [2135] = 2037, + [2136] = 2040, + [2137] = 2137, + [2138] = 2038, + [2139] = 2039, + [2140] = 2037, + [2141] = 2040, + [2142] = 2040, + [2143] = 2037, + [2144] = 2037, + [2145] = 2039, + [2146] = 2039, + [2147] = 2040, + [2148] = 2039, + [2149] = 2037, + [2150] = 2039, + [2151] = 2037, + [2152] = 2040, + [2153] = 2038, + [2154] = 2038, + [2155] = 2039, + [2156] = 2038, + [2157] = 2039, + [2158] = 2038, + [2159] = 2040, + [2160] = 2040, + [2161] = 2037, + [2162] = 2037, + [2163] = 2040, + [2164] = 2039, + [2165] = 2038, + [2166] = 2040, + [2167] = 2040, + [2168] = 2040, + [2169] = 2040, + [2170] = 2039, + [2171] = 2171, + [2172] = 2038, + [2173] = 2039, + [2174] = 2039, + [2175] = 2040, + [2176] = 2176, [2177] = 2177, [2178] = 2178, - [2179] = 2148, - [2180] = 2148, - [2181] = 2181, - [2182] = 2148, - [2183] = 2183, - [2184] = 2183, - [2185] = 2183, - [2186] = 2186, - [2187] = 2183, - [2188] = 2183, - [2189] = 2189, - [2190] = 2186, - [2191] = 2183, - [2192] = 2186, - [2193] = 2193, - [2194] = 2183, - [2195] = 2183, - [2196] = 2186, - [2197] = 2183, - [2198] = 2183, - [2199] = 2183, - [2200] = 2183, - [2201] = 2186, - [2202] = 2183, - [2203] = 2183, - [2204] = 2183, - [2205] = 2183, - [2206] = 2186, - [2207] = 2183, - [2208] = 2186, - [2209] = 2183, - [2210] = 2183, - [2211] = 2183, - [2212] = 2183, - [2213] = 2186, - [2214] = 2183, - [2215] = 2186, - [2216] = 2183, - [2217] = 2183, - [2218] = 2183, - [2219] = 2186, - [2220] = 2183, - [2221] = 2183, - [2222] = 1382, - [2223] = 2183, - [2224] = 2183, - [2225] = 2186, - [2226] = 2183, - [2227] = 2186, - [2228] = 2183, - [2229] = 2183, - [2230] = 2186, - [2231] = 2186, - [2232] = 2232, - [2233] = 1378, - [2234] = 2186, - [2235] = 2183, - [2236] = 2236, - [2237] = 2183, - [2238] = 2183, - [2239] = 1386, - [2240] = 2186, - [2241] = 2186, - [2242] = 2183, - [2243] = 1385, - [2244] = 2183, - [2245] = 2183, - [2246] = 2183, - [2247] = 2247, - [2248] = 2186, - [2249] = 2249, - [2250] = 2186, - [2251] = 2183, - [2252] = 2183, - [2253] = 2183, - [2254] = 2186, - [2255] = 2183, - [2256] = 2256, - [2257] = 2257, - [2258] = 2183, - [2259] = 2183, - [2260] = 2183, - [2261] = 2183, - [2262] = 2186, - [2263] = 2186, - [2264] = 2183, - [2265] = 2186, - [2266] = 2186, - [2267] = 2267, - [2268] = 2267, - [2269] = 2267, - [2270] = 1432, - [2271] = 2271, - [2272] = 1378, - [2273] = 2267, - [2274] = 2274, - [2275] = 2267, - [2276] = 2276, - [2277] = 2267, - [2278] = 2278, - [2279] = 2279, - [2280] = 2267, - [2281] = 2267, - [2282] = 1386, - [2283] = 1382, - [2284] = 1385, - [2285] = 2285, + [2179] = 2179, + [2180] = 2179, + [2181] = 2178, + [2182] = 2179, + [2183] = 2176, + [2184] = 2179, + [2185] = 2179, + [2186] = 2179, + [2187] = 2179, + [2188] = 2178, + [2189] = 2176, + [2190] = 2179, + [2191] = 2179, + [2192] = 2178, + [2193] = 2179, + [2194] = 2176, + [2195] = 2179, + [2196] = 2179, + [2197] = 2179, + [2198] = 2179, + [2199] = 2178, + [2200] = 2178, + [2201] = 2179, + [2202] = 2179, + [2203] = 2176, + [2204] = 2176, + [2205] = 2176, + [2206] = 2179, + [2207] = 2176, + [2208] = 2179, + [2209] = 2179, + [2210] = 2178, + [2211] = 2176, + [2212] = 2179, + [2213] = 2179, + [2214] = 2178, + [2215] = 2176, + [2216] = 2176, + [2217] = 2179, + [2218] = 2179, + [2219] = 2176, + [2220] = 2178, + [2221] = 2178, + [2222] = 2178, + [2223] = 2176, + [2224] = 2176, + [2225] = 2178, + [2226] = 2178, + [2227] = 2176, + [2228] = 2176, + [2229] = 2178, + [2230] = 2178, + [2231] = 2176, + [2232] = 2178, + [2233] = 2176, + [2234] = 2178, + [2235] = 2178, + [2236] = 2176, + [2237] = 2176, + [2238] = 2176, + [2239] = 2178, + [2240] = 2178, + [2241] = 2178, + [2242] = 2176, + [2243] = 2178, + [2244] = 2176, + [2245] = 2178, + [2246] = 2176, + [2247] = 2178, + [2248] = 2178, + [2249] = 2176, + [2250] = 2176, + [2251] = 2176, + [2252] = 2176, + [2253] = 2178, + [2254] = 2178, + [2255] = 2178, + [2256] = 2176, + [2257] = 2176, + [2258] = 579, + [2259] = 2178, + [2260] = 2176, + [2261] = 2176, + [2262] = 2262, + [2263] = 2178, + [2264] = 2176, + [2265] = 2178, + [2266] = 2178, + [2267] = 2178, + [2268] = 2176, + [2269] = 2178, + [2270] = 2176, + [2271] = 2176, + [2272] = 2178, + [2273] = 2176, + [2274] = 2176, + [2275] = 2275, + [2276] = 2178, + [2277] = 2178, + [2278] = 2176, + [2279] = 2262, + [2280] = 2178, + [2281] = 2178, + [2282] = 2176, + [2283] = 2176, + [2284] = 2178, + [2285] = 2178, [2286] = 2286, - [2287] = 2287, + [2287] = 2178, [2288] = 2288, - [2289] = 2289, - [2290] = 2267, - [2291] = 2267, - [2292] = 1386, - [2293] = 1385, - [2294] = 2267, - [2295] = 2295, - [2296] = 2267, - [2297] = 2267, - [2298] = 2286, - [2299] = 2267, - [2300] = 2267, - [2301] = 2267, - [2302] = 1378, - [2303] = 2303, - [2304] = 2267, - [2305] = 2267, - [2306] = 1385, - [2307] = 1386, - [2308] = 2267, - [2309] = 2267, - [2310] = 2267, - [2311] = 2267, - [2312] = 1378, - [2313] = 1382, - [2314] = 2314, - [2315] = 2315, - [2316] = 2267, - [2317] = 1382, - [2318] = 2267, - [2319] = 2319, - [2320] = 2319, - [2321] = 2319, - [2322] = 2319, - [2323] = 1477, - [2324] = 1432, - [2325] = 2319, - [2326] = 2319, - [2327] = 2319, - [2328] = 1469, - [2329] = 2319, - [2330] = 2319, - [2331] = 1476, - [2332] = 2319, - [2333] = 2319, - [2334] = 2319, - [2335] = 2335, - [2336] = 1378, - [2337] = 2319, - [2338] = 2319, - [2339] = 2319, - [2340] = 2319, - [2341] = 2319, - [2342] = 2319, - [2343] = 1473, - [2344] = 1474, - [2345] = 675, - [2346] = 2319, - [2347] = 1382, - [2348] = 683, - [2349] = 674, - [2350] = 2319, - [2351] = 2319, - [2352] = 2319, - [2353] = 2319, - [2354] = 2354, - [2355] = 2319, - [2356] = 1432, - [2357] = 2319, - [2358] = 2319, - [2359] = 2319, - [2360] = 2319, - [2361] = 2354, - [2362] = 2362, - [2363] = 2319, - [2364] = 2319, - [2365] = 2319, - [2366] = 2366, - [2367] = 2319, - [2368] = 2319, - [2369] = 2319, - [2370] = 1385, - [2371] = 2371, - [2372] = 1386, - [2373] = 2319, - [2374] = 2319, - [2375] = 2319, - [2376] = 2319, - [2377] = 2319, - [2378] = 2319, - [2379] = 2319, - [2380] = 2319, - [2381] = 2319, - [2382] = 2319, - [2383] = 1498, - [2384] = 2384, - [2385] = 2319, - [2386] = 2319, - [2387] = 2319, - [2388] = 2319, - [2389] = 2319, - [2390] = 1432, - [2391] = 2319, + [2289] = 2178, + [2290] = 2176, + [2291] = 2178, + [2292] = 2176, + [2293] = 2176, + [2294] = 2294, + [2295] = 2178, + [2296] = 2176, + [2297] = 2176, + [2298] = 2178, + [2299] = 2299, + [2300] = 2300, + [2301] = 2178, + [2302] = 2176, + [2303] = 2176, + [2304] = 2176, + [2305] = 2178, + [2306] = 2178, + [2307] = 2307, + [2308] = 2176, + [2309] = 2178, + [2310] = 2310, + [2311] = 2176, + [2312] = 2178, + [2313] = 2178, + [2314] = 2176, + [2315] = 2178, + [2316] = 2316, + [2317] = 2176, + [2318] = 2176, + [2319] = 2178, + [2320] = 2176, + [2321] = 2179, + [2322] = 2178, + [2323] = 2176, + [2324] = 2178, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2327, + [2329] = 2327, + [2330] = 2325, + [2331] = 2327, + [2332] = 2327, + [2333] = 2327, + [2334] = 2327, + [2335] = 2327, + [2336] = 2327, + [2337] = 2325, + [2338] = 2325, + [2339] = 2327, + [2340] = 2327, + [2341] = 2327, + [2342] = 2325, + [2343] = 2327, + [2344] = 2325, + [2345] = 2327, + [2346] = 2327, + [2347] = 2327, + [2348] = 2325, + [2349] = 2327, + [2350] = 2327, + [2351] = 2327, + [2352] = 2327, + [2353] = 2327, + [2354] = 1464, + [2355] = 2325, + [2356] = 2327, + [2357] = 2327, + [2358] = 2327, + [2359] = 2327, + [2360] = 2327, + [2361] = 2327, + [2362] = 2327, + [2363] = 2327, + [2364] = 2327, + [2365] = 1462, + [2366] = 2325, + [2367] = 2327, + [2368] = 2327, + [2369] = 2327, + [2370] = 2327, + [2371] = 2325, + [2372] = 2327, + [2373] = 2373, + [2374] = 2325, + [2375] = 2325, + [2376] = 2327, + [2377] = 2327, + [2378] = 2327, + [2379] = 2327, + [2380] = 579, + [2381] = 2327, + [2382] = 579, + [2383] = 579, + [2384] = 2325, + [2385] = 2327, + [2386] = 2327, + [2387] = 2325, + [2388] = 2327, + [2389] = 2325, + [2390] = 2325, + [2391] = 2327, [2392] = 2392, - [2393] = 1378, - [2394] = 1382, - [2395] = 2392, - [2396] = 1432, - [2397] = 1386, - [2398] = 1386, + [2393] = 2325, + [2394] = 2394, + [2395] = 2395, + [2396] = 2325, + [2397] = 2327, + [2398] = 2325, [2399] = 2399, - [2400] = 1526, - [2401] = 2401, - [2402] = 2392, + [2400] = 2327, + [2401] = 2325, + [2402] = 2325, [2403] = 2403, - [2404] = 2401, - [2405] = 2403, - [2406] = 1385, + [2404] = 2327, + [2405] = 1456, + [2406] = 2325, [2407] = 2407, - [2408] = 2288, - [2409] = 2295, - [2410] = 1524, - [2411] = 1386, - [2412] = 2403, - [2413] = 1382, - [2414] = 2403, - [2415] = 2392, + [2408] = 2325, + [2409] = 2325, + [2410] = 2327, + [2411] = 1465, + [2412] = 2412, + [2413] = 2412, + [2414] = 2412, + [2415] = 1456, [2416] = 2416, [2417] = 2417, - [2418] = 1556, - [2419] = 1555, - [2420] = 2392, - [2421] = 1385, - [2422] = 2403, - [2423] = 2392, - [2424] = 2401, - [2425] = 1544, - [2426] = 1386, - [2427] = 1542, - [2428] = 2392, - [2429] = 1382, + [2418] = 2418, + [2419] = 2419, + [2420] = 2412, + [2421] = 2412, + [2422] = 2412, + [2423] = 2412, + [2424] = 1462, + [2425] = 2412, + [2426] = 2412, + [2427] = 2412, + [2428] = 2412, + [2429] = 2429, [2430] = 2430, - [2431] = 2392, - [2432] = 2403, - [2433] = 2403, - [2434] = 2434, + [2431] = 1464, + [2432] = 2412, + [2433] = 2412, + [2434] = 2412, [2435] = 2435, - [2436] = 1520, - [2437] = 1378, - [2438] = 1378, - [2439] = 1385, - [2440] = 2440, - [2441] = 2271, - [2442] = 2442, - [2443] = 2403, - [2444] = 2401, - [2445] = 2274, - [2446] = 1378, - [2447] = 1382, - [2448] = 1385, + [2436] = 2412, + [2437] = 2412, + [2438] = 2412, + [2439] = 2412, + [2440] = 2412, + [2441] = 1464, + [2442] = 2412, + [2443] = 2443, + [2444] = 2444, + [2445] = 1464, + [2446] = 1462, + [2447] = 2412, + [2448] = 1462, [2449] = 2449, - [2450] = 1432, - [2451] = 2451, - [2452] = 2451, + [2450] = 579, + [2451] = 1465, + [2452] = 2435, [2453] = 2453, - [2454] = 2451, - [2455] = 2451, - [2456] = 2451, + [2454] = 2412, + [2455] = 579, + [2456] = 1456, [2457] = 2457, - [2458] = 2451, - [2459] = 1432, - [2460] = 2460, - [2461] = 1432, - [2462] = 2462, - [2463] = 2463, - [2464] = 2451, - [2465] = 2451, - [2466] = 2451, + [2458] = 2458, + [2459] = 1456, + [2460] = 2412, + [2461] = 2461, + [2462] = 2412, + [2463] = 1498, + [2464] = 579, + [2465] = 1465, + [2466] = 1465, [2467] = 2467, - [2468] = 2451, - [2469] = 2463, - [2470] = 2451, - [2471] = 2451, - [2472] = 2451, - [2473] = 2451, - [2474] = 2451, - [2475] = 2451, - [2476] = 2451, - [2477] = 2451, - [2478] = 2451, - [2479] = 2479, - [2480] = 2451, - [2481] = 2451, - [2482] = 1432, - [2483] = 2451, - [2484] = 2451, - [2485] = 2451, - [2486] = 2460, - [2487] = 2487, - [2488] = 2488, - [2489] = 2489, - [2490] = 2490, - [2491] = 2491, - [2492] = 2492, - [2493] = 2492, - [2494] = 2494, - [2495] = 2491, - [2496] = 2487, - [2497] = 2497, - [2498] = 2491, - [2499] = 2487, - [2500] = 2488, - [2501] = 2492, - [2502] = 2491, - [2503] = 2494, - [2504] = 2487, - [2505] = 2487, - [2506] = 2492, - [2507] = 2487, + [2468] = 1464, + [2469] = 2467, + [2470] = 2467, + [2471] = 2467, + [2472] = 2467, + [2473] = 2473, + [2474] = 2473, + [2475] = 2467, + [2476] = 2467, + [2477] = 2467, + [2478] = 560, + [2479] = 2467, + [2480] = 564, + [2481] = 2467, + [2482] = 2467, + [2483] = 2483, + [2484] = 2467, + [2485] = 2467, + [2486] = 2467, + [2487] = 558, + [2488] = 1498, + [2489] = 2467, + [2490] = 2467, + [2491] = 2467, + [2492] = 2467, + [2493] = 2467, + [2494] = 1456, + [2495] = 2467, + [2496] = 2467, + [2497] = 579, + [2498] = 2467, + [2499] = 1465, + [2500] = 2467, + [2501] = 2501, + [2502] = 2502, + [2503] = 2467, + [2504] = 2467, + [2505] = 2467, + [2506] = 2467, + [2507] = 1498, [2508] = 2508, - [2509] = 2509, - [2510] = 2487, - [2511] = 2511, - [2512] = 2489, - [2513] = 2490, - [2514] = 2487, - [2515] = 2487, - [2516] = 2487, - [2517] = 2511, - [2518] = 2508, - [2519] = 2519, - [2520] = 2497, - [2521] = 2521, - [2522] = 2522, - [2523] = 2523, - [2524] = 2487, - [2525] = 2488, - [2526] = 2494, - [2527] = 2492, - [2528] = 2508, - [2529] = 2488, - [2530] = 2487, - [2531] = 2531, - [2532] = 2489, - [2533] = 2490, - [2534] = 2491, - [2535] = 2488, - [2536] = 2494, - [2537] = 2488, - [2538] = 2488, - [2539] = 2487, - [2540] = 2497, - [2541] = 2492, - [2542] = 2487, - [2543] = 2491, - [2544] = 2491, - [2545] = 2494, - [2546] = 2492, - [2547] = 2488, - [2548] = 2508, - [2549] = 2488, - [2550] = 2489, - [2551] = 2491, - [2552] = 2494, - [2553] = 2494, - [2554] = 2492, - [2555] = 2508, - [2556] = 668, - [2557] = 2489, - [2558] = 2488, - [2559] = 2487, - [2560] = 2494, - [2561] = 2561, - [2562] = 2508, - [2563] = 2492, - [2564] = 2489, - [2565] = 2491, - [2566] = 2494, - [2567] = 2492, - [2568] = 2511, - [2569] = 2508, - [2570] = 2487, - [2571] = 2489, - [2572] = 2488, - [2573] = 2487, - [2574] = 2491, - [2575] = 2491, - [2576] = 2508, - [2577] = 2494, - [2578] = 2489, - [2579] = 2487, - [2580] = 2492, - [2581] = 2581, - [2582] = 2508, - [2583] = 2488, - [2584] = 2489, - [2585] = 2490, - [2586] = 2488, - [2587] = 2487, - [2588] = 2508, - [2589] = 2589, - [2590] = 2489, - [2591] = 2491, - [2592] = 2494, - [2593] = 2508, - [2594] = 2594, - [2595] = 2489, - [2596] = 2492, - [2597] = 2594, - [2598] = 2508, - [2599] = 2488, - [2600] = 2489, - [2601] = 2487, - [2602] = 2491, - [2603] = 2508, - [2604] = 2589, - [2605] = 2489, - [2606] = 2494, - [2607] = 2492, - [2608] = 2508, - [2609] = 2609, - [2610] = 2489, + [2509] = 2467, + [2510] = 2467, + [2511] = 2467, + [2512] = 1511, + [2513] = 1503, + [2514] = 2514, + [2515] = 2467, + [2516] = 2467, + [2517] = 2467, + [2518] = 2467, + [2519] = 2467, + [2520] = 1516, + [2521] = 2467, + [2522] = 2467, + [2523] = 1532, + [2524] = 1507, + [2525] = 2525, + [2526] = 2467, + [2527] = 2467, + [2528] = 2467, + [2529] = 1498, + [2530] = 2530, + [2531] = 1462, + [2532] = 2467, + [2533] = 2467, + [2534] = 2467, + [2535] = 2467, + [2536] = 2536, + [2537] = 2467, + [2538] = 2467, + [2539] = 2467, + [2540] = 2467, + [2541] = 2467, + [2542] = 2467, + [2543] = 2543, + [2544] = 2467, + [2545] = 2467, + [2546] = 2467, + [2547] = 2467, + [2548] = 2467, + [2549] = 1510, + [2550] = 2467, + [2551] = 2467, + [2552] = 2467, + [2553] = 2553, + [2554] = 2554, + [2555] = 2555, + [2556] = 1462, + [2557] = 2553, + [2558] = 1464, + [2559] = 2559, + [2560] = 2560, + [2561] = 1465, + [2562] = 1464, + [2563] = 2461, + [2564] = 2564, + [2565] = 1573, + [2566] = 2566, + [2567] = 2553, + [2568] = 1456, + [2569] = 2564, + [2570] = 2553, + [2571] = 2553, + [2572] = 1559, + [2573] = 1464, + [2574] = 2564, + [2575] = 1465, + [2576] = 1462, + [2577] = 2577, + [2578] = 2553, + [2579] = 2564, + [2580] = 1456, + [2581] = 1600, + [2582] = 2553, + [2583] = 1608, + [2584] = 2560, + [2585] = 1465, + [2586] = 1579, + [2587] = 1585, + [2588] = 1456, + [2589] = 2457, + [2590] = 1462, + [2591] = 1462, + [2592] = 1464, + [2593] = 2593, + [2594] = 1465, + [2595] = 2564, + [2596] = 2560, + [2597] = 1581, + [2598] = 2453, + [2599] = 2564, + [2600] = 2600, + [2601] = 2564, + [2602] = 2602, + [2603] = 2564, + [2604] = 2560, + [2605] = 579, + [2606] = 1456, + [2607] = 1498, + [2608] = 2458, + [2609] = 2553, + [2610] = 2610, [2611] = 2611, - [2612] = 2488, - [2613] = 2508, - [2614] = 2487, - [2615] = 2489, - [2616] = 2487, - [2617] = 2491, - [2618] = 2508, - [2619] = 2619, - [2620] = 2489, - [2621] = 2494, - [2622] = 2488, - [2623] = 2508, - [2624] = 2489, - [2625] = 2489, - [2626] = 2492, - [2627] = 2488, - [2628] = 2508, - [2629] = 2491, - [2630] = 2489, - [2631] = 2487, - [2632] = 2491, - [2633] = 2508, - [2634] = 677, - [2635] = 2489, - [2636] = 2494, - [2637] = 2492, - [2638] = 2508, - [2639] = 2488, - [2640] = 2489, - [2641] = 2487, - [2642] = 2491, - [2643] = 2508, - [2644] = 2494, - [2645] = 2489, - [2646] = 2511, - [2647] = 2492, - [2648] = 2508, - [2649] = 2492, - [2650] = 2489, - [2651] = 2488, - [2652] = 2488, - [2653] = 2508, - [2654] = 2487, - [2655] = 2489, - [2656] = 2491, - [2657] = 2494, - [2658] = 2508, - [2659] = 2492, - [2660] = 2489, - [2661] = 2508, - [2662] = 2494, - [2663] = 2489, - [2664] = 2508, - [2665] = 2665, - [2666] = 2489, - [2667] = 2508, - [2668] = 2487, - [2669] = 2489, - [2670] = 2508, - [2671] = 2492, - [2672] = 2489, - [2673] = 2508, - [2674] = 2494, - [2675] = 2489, - [2676] = 2508, - [2677] = 2594, - [2678] = 2489, - [2679] = 2508, - [2680] = 2491, - [2681] = 2489, - [2682] = 2508, - [2683] = 2494, - [2684] = 2489, - [2685] = 2508, - [2686] = 2491, - [2687] = 2489, - [2688] = 2508, - [2689] = 2689, - [2690] = 2489, - [2691] = 2508, - [2692] = 2492, - [2693] = 2489, - [2694] = 2508, - [2695] = 2487, - [2696] = 2489, - [2697] = 2508, - [2698] = 679, - [2699] = 2489, - [2700] = 2508, - [2701] = 2488, - [2702] = 2489, - [2703] = 2508, - [2704] = 2487, - [2705] = 2489, - [2706] = 2508, - [2707] = 2491, - [2708] = 2489, - [2709] = 2508, - [2710] = 2710, - [2711] = 2489, - [2712] = 2508, - [2713] = 2494, - [2714] = 2489, - [2715] = 2508, - [2716] = 2716, - [2717] = 2489, - [2718] = 2508, - [2719] = 2488, - [2720] = 2489, - [2721] = 2508, - [2722] = 2492, - [2723] = 2489, - [2724] = 2508, - [2725] = 2725, - [2726] = 2489, - [2727] = 2508, - [2728] = 2728, - [2729] = 2489, - [2730] = 2508, - [2731] = 2488, - [2732] = 2489, - [2733] = 2733, - [2734] = 2487, - [2735] = 2561, - [2736] = 2736, - [2737] = 2491, - [2738] = 2494, - [2739] = 2523, - [2740] = 2511, - [2741] = 2492, - [2742] = 2742, - [2743] = 2492, - [2744] = 2488, - [2745] = 2487, - [2746] = 2494, - [2747] = 2491, - [2748] = 2494, - [2749] = 2492, - [2750] = 2488, - [2751] = 2751, - [2752] = 2487, - [2753] = 2522, - [2754] = 2492, - [2755] = 2511, - [2756] = 2756, - [2757] = 2491, - [2758] = 2758, - [2759] = 2488, - [2760] = 2760, - [2761] = 2494, - [2762] = 2762, - [2763] = 2494, - [2764] = 2521, - [2765] = 2492, - [2766] = 2488, - [2767] = 2487, - [2768] = 2519, - [2769] = 2491, - [2770] = 2491, - [2771] = 2508, - [2772] = 2772, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2494, - [2777] = 2589, - [2778] = 2487, - [2779] = 2779, - [2780] = 2487, - [2781] = 2488, - [2782] = 2619, - [2783] = 2492, - [2784] = 2581, - [2785] = 2611, - [2786] = 2488, - [2787] = 2487, - [2788] = 2491, - [2789] = 2494, - [2790] = 2491, - [2791] = 2492, - [2792] = 2581, - [2793] = 2611, - [2794] = 2491, - [2795] = 2488, - [2796] = 2487, - [2797] = 2491, - [2798] = 2494, - [2799] = 2494, - [2800] = 2581, - [2801] = 2611, - [2802] = 2492, - [2803] = 2488, - [2804] = 2487, - [2805] = 2805, - [2806] = 684, - [2807] = 2491, - [2808] = 2494, - [2809] = 2809, - [2810] = 2492, - [2811] = 2491, - [2812] = 2488, - [2813] = 2487, - [2814] = 2494, - [2815] = 678, - [2816] = 2494, - [2817] = 2487, - [2818] = 2494, - [2819] = 2488, - [2820] = 2492, - [2821] = 2488, - [2822] = 2487, - [2823] = 2491, - [2824] = 2494, - [2825] = 2492, - [2826] = 2492, - [2827] = 2488, - [2828] = 2487, - [2829] = 2561, - [2830] = 2492, - [2831] = 2491, - [2832] = 2511, - [2833] = 2494, - [2834] = 2492, - [2835] = 2488, - [2836] = 2487, - [2837] = 2491, - [2838] = 2511, - [2839] = 2492, - [2840] = 2494, - [2841] = 2494, - [2842] = 2842, - [2843] = 2492, - [2844] = 2488, - [2845] = 2488, - [2846] = 2487, - [2847] = 2491, - [2848] = 2594, - [2849] = 2491, - [2850] = 2589, - [2851] = 2851, - [2852] = 2494, - [2853] = 2487, - [2854] = 2487, - [2855] = 2488, - [2856] = 2856, - [2857] = 2561, - [2858] = 2492, - [2859] = 2492, - [2860] = 2488, - [2861] = 2487, - [2862] = 2491, - [2863] = 2491, - [2864] = 2494, - [2865] = 672, - [2866] = 2492, - [2867] = 2772, - [2868] = 2494, - [2869] = 2488, - [2870] = 2487, - [2871] = 2871, - [2872] = 2491, - [2873] = 2492, - [2874] = 2497, - [2875] = 2728, - [2876] = 2491, - [2877] = 2487, - [2878] = 2488, - [2879] = 2742, - [2880] = 2494, - [2881] = 2492, - [2882] = 2492, - [2883] = 2488, - [2884] = 2487, - [2885] = 2491, - [2886] = 2494, - [2887] = 2494, - [2888] = 2491, - [2889] = 2492, - [2890] = 2488, - [2891] = 2487, - [2892] = 2491, - [2893] = 2487, - [2894] = 2494, - [2895] = 2488, - [2896] = 2492, - [2897] = 2871, - [2898] = 2492, - [2899] = 2488, - [2900] = 2487, - [2901] = 2491, - [2902] = 2494, - [2903] = 2494, - [2904] = 2491, - [2905] = 2487, - [2906] = 2492, - [2907] = 2488, - [2908] = 2487, - [2909] = 2491, - [2910] = 2494, - [2911] = 2492, - [2912] = 2488, - [2913] = 2487, - [2914] = 2491, - [2915] = 2494, - [2916] = 2492, - [2917] = 2488, - [2918] = 2487, - [2919] = 2491, - [2920] = 2494, + [2612] = 2612, + [2613] = 1498, + [2614] = 2611, + [2615] = 2611, + [2616] = 2611, + [2617] = 2611, + [2618] = 2611, + [2619] = 2611, + [2620] = 2620, + [2621] = 2611, + [2622] = 2611, + [2623] = 2611, + [2624] = 2624, + [2625] = 2611, + [2626] = 2611, + [2627] = 2611, + [2628] = 2611, + [2629] = 2611, + [2630] = 2611, + [2631] = 1498, + [2632] = 2611, + [2633] = 1498, + [2634] = 2611, + [2635] = 2635, + [2636] = 2611, + [2637] = 2611, + [2638] = 1498, + [2639] = 2635, + [2640] = 2611, + [2641] = 2612, + [2642] = 2642, + [2643] = 2643, + [2644] = 2611, + [2645] = 2611, + [2646] = 2611, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2650, + [2651] = 2651, + [2652] = 2652, + [2653] = 2653, + [2654] = 2654, + [2655] = 2647, + [2656] = 2649, + [2657] = 2657, + [2658] = 2650, + [2659] = 2652, + [2660] = 2651, + [2661] = 2653, + [2662] = 2654, + [2663] = 2647, + [2664] = 2649, + [2665] = 2657, + [2666] = 2652, + [2667] = 2650, + [2668] = 2651, + [2669] = 2647, + [2670] = 2649, + [2671] = 2653, + [2672] = 2654, + [2673] = 2652, + [2674] = 2657, + [2675] = 2650, + [2676] = 2651, + [2677] = 2649, + [2678] = 2652, + [2679] = 2653, + [2680] = 2647, + [2681] = 2649, + [2682] = 2654, + [2683] = 2652, + [2684] = 2647, + [2685] = 2649, + [2686] = 2652, + [2687] = 2657, + [2688] = 2647, + [2689] = 2649, + [2690] = 2650, + [2691] = 2652, + [2692] = 2651, + [2693] = 2650, + [2694] = 2647, + [2695] = 2649, + [2696] = 2657, + [2697] = 2652, + [2698] = 2654, + [2699] = 2653, + [2700] = 2647, + [2701] = 2649, + [2702] = 2653, + [2703] = 2652, + [2704] = 2654, + [2705] = 2652, + [2706] = 2647, + [2707] = 2649, + [2708] = 2651, + [2709] = 2652, + [2710] = 2649, + [2711] = 2647, + [2712] = 2647, + [2713] = 2649, + [2714] = 2657, + [2715] = 2652, + [2716] = 2650, + [2717] = 2650, + [2718] = 2647, + [2719] = 2649, + [2720] = 2651, + [2721] = 2652, + [2722] = 2657, + [2723] = 2654, + [2724] = 2647, + [2725] = 2649, + [2726] = 2653, + [2727] = 2652, + [2728] = 2653, + [2729] = 2652, + [2730] = 2647, + [2731] = 2649, + [2732] = 2654, + [2733] = 2652, + [2734] = 2649, + [2735] = 2647, + [2736] = 2647, + [2737] = 2649, + [2738] = 2651, + [2739] = 2652, + [2740] = 2657, + [2741] = 2650, + [2742] = 2647, + [2743] = 2649, + [2744] = 2650, + [2745] = 2652, + [2746] = 2651, + [2747] = 2647, + [2748] = 2649, + [2749] = 2657, + [2750] = 2652, + [2751] = 2652, + [2752] = 2647, + [2753] = 2649, + [2754] = 2653, + [2755] = 2652, + [2756] = 2654, + [2757] = 2647, + [2758] = 2649, + [2759] = 2654, + [2760] = 2652, + [2761] = 2649, + [2762] = 2647, + [2763] = 2649, + [2764] = 2647, + [2765] = 2652, + [2766] = 2657, + [2767] = 2647, + [2768] = 2649, + [2769] = 2653, + [2770] = 2652, + [2771] = 2650, + [2772] = 2647, + [2773] = 2649, + [2774] = 2651, + [2775] = 2652, + [2776] = 2651, + [2777] = 2647, + [2778] = 2649, + [2779] = 2647, + [2780] = 2652, + [2781] = 2653, + [2782] = 2647, + [2783] = 2649, + [2784] = 2654, + [2785] = 2652, + [2786] = 2657, + [2787] = 2647, + [2788] = 2649, + [2789] = 2652, + [2790] = 2652, + [2791] = 2657, + [2792] = 2647, + [2793] = 2649, + [2794] = 2657, + [2795] = 2652, + [2796] = 2649, + [2797] = 2647, + [2798] = 2649, + [2799] = 2650, + [2800] = 2652, + [2801] = 2651, + [2802] = 2647, + [2803] = 2649, + [2804] = 2804, + [2805] = 2652, + [2806] = 2654, + [2807] = 2647, + [2808] = 2649, + [2809] = 2653, + [2810] = 2652, + [2811] = 2654, + [2812] = 2647, + [2813] = 2649, + [2814] = 2653, + [2815] = 2652, + [2816] = 2651, + [2817] = 2647, + [2818] = 2649, + [2819] = 2650, + [2820] = 2652, + [2821] = 2657, + [2822] = 2647, + [2823] = 2649, + [2824] = 2824, + [2825] = 2652, + [2826] = 2650, + [2827] = 2647, + [2828] = 2649, + [2829] = 2651, + [2830] = 2652, + [2831] = 2657, + [2832] = 2647, + [2833] = 2649, + [2834] = 2834, + [2835] = 2652, + [2836] = 2653, + [2837] = 2647, + [2838] = 2649, + [2839] = 2654, + [2840] = 2652, + [2841] = 2654, + [2842] = 2647, + [2843] = 2649, + [2844] = 2653, + [2845] = 2652, + [2846] = 2846, + [2847] = 2647, + [2848] = 2649, + [2849] = 2657, + [2850] = 2652, + [2851] = 2648, + [2852] = 2647, + [2853] = 2649, + [2854] = 2650, + [2855] = 2652, + [2856] = 2651, + [2857] = 2647, + [2858] = 2649, + [2859] = 2804, + [2860] = 2652, + [2861] = 2651, + [2862] = 2647, + [2863] = 2649, + [2864] = 2653, + [2865] = 2652, + [2866] = 2654, + [2867] = 2647, + [2868] = 2649, + [2869] = 2650, + [2870] = 2652, + [2871] = 2652, + [2872] = 2647, + [2873] = 2649, + [2874] = 2657, + [2875] = 2652, + [2876] = 2649, + [2877] = 2647, + [2878] = 2649, + [2879] = 2647, + [2880] = 2652, + [2881] = 2650, + [2882] = 2647, + [2883] = 2649, + [2884] = 2651, + [2885] = 2652, + [2886] = 2824, + [2887] = 2647, + [2888] = 2649, + [2889] = 2654, + [2890] = 2652, + [2891] = 2653, + [2892] = 2647, + [2893] = 2649, + [2894] = 2654, + [2895] = 2652, + [2896] = 2834, + [2897] = 2647, + [2898] = 2649, + [2899] = 2653, + [2900] = 2652, + [2901] = 2846, + [2902] = 2647, + [2903] = 2649, + [2904] = 2647, + [2905] = 2649, + [2906] = 2653, + [2907] = 2651, + [2908] = 2650, + [2909] = 2657, + [2910] = 2652, + [2911] = 2650, + [2912] = 2651, + [2913] = 2657, + [2914] = 2649, + [2915] = 2653, + [2916] = 2654, + [2917] = 2647, + [2918] = 2654, + [2919] = 2653, + [2920] = 2651, + [2921] = 2650, + [2922] = 2657, + [2923] = 2824, + [2924] = 2654, + [2925] = 2834, + [2926] = 2653, + [2927] = 2651, + [2928] = 2846, + [2929] = 2648, + [2930] = 2804, + [2931] = 2657, + [2932] = 2652, + [2933] = 2650, + [2934] = 2651, + [2935] = 2650, + [2936] = 2657, + [2937] = 2937, + [2938] = 2649, + [2939] = 2653, + [2940] = 2940, + [2941] = 2654, + [2942] = 2942, + [2943] = 2943, + [2944] = 2647, + [2945] = 2653, + [2946] = 2653, + [2947] = 2654, + [2948] = 2657, + [2949] = 2650, + [2950] = 2824, + [2951] = 2653, + [2952] = 2654, + [2953] = 2657, + [2954] = 2650, + [2955] = 2654, + [2956] = 2653, + [2957] = 2834, + [2958] = 2958, + [2959] = 2959, + [2960] = 2653, + [2961] = 2654, + [2962] = 2962, + [2963] = 2963, + [2964] = 2657, + [2965] = 2650, + [2966] = 2657, + [2967] = 2654, + [2968] = 2657, + [2969] = 2650, + [2970] = 2651, + [2971] = 2650, + [2972] = 2653, + [2973] = 2654, + [2974] = 2974, + [2975] = 764, + [2976] = 2657, + [2977] = 2977, + [2978] = 2650, + [2979] = 2657, + [2980] = 2653, + [2981] = 2654, + [2982] = 2657, + [2983] = 2650, + [2984] = 2657, + [2985] = 2654, + [2986] = 2653, + [2987] = 2654, + [2988] = 2657, + [2989] = 2650, + [2990] = 2653, + [2991] = 2991, + [2992] = 2653, + [2993] = 2846, + [2994] = 2648, + [2995] = 2804, + [2996] = 2996, + [2997] = 2650, + [2998] = 2654, + [2999] = 2657, + [3000] = 3000, + [3001] = 2650, + [3002] = 2651, + [3003] = 3003, + [3004] = 2651, + [3005] = 2653, + [3006] = 2651, + [3007] = 2996, + [3008] = 2654, + [3009] = 3009, + [3010] = 2657, + [3011] = 2650, + [3012] = 2650, + [3013] = 2651, + [3014] = 2653, + [3015] = 2654, + [3016] = 2657, + [3017] = 2650, + [3018] = 2996, + [3019] = 2651, + [3020] = 2654, + [3021] = 2653, + [3022] = 2654, + [3023] = 2657, + [3024] = 2652, + [3025] = 2650, + [3026] = 742, + [3027] = 2653, + [3028] = 3028, + [3029] = 2996, + [3030] = 2651, + [3031] = 3031, + [3032] = 2653, + [3033] = 2654, + [3034] = 2650, + [3035] = 2650, + [3036] = 2651, + [3037] = 2651, + [3038] = 2653, + [3039] = 2654, + [3040] = 2657, + [3041] = 2650, + [3042] = 2650, + [3043] = 2651, + [3044] = 2657, + [3045] = 2653, + [3046] = 2654, + [3047] = 2657, + [3048] = 3048, + [3049] = 2650, + [3050] = 2651, + [3051] = 2653, + [3052] = 2654, + [3053] = 2657, + [3054] = 2650, + [3055] = 3055, + [3056] = 3056, + [3057] = 2654, + [3058] = 2651, + [3059] = 2653, + [3060] = 3060, + [3061] = 2653, + [3062] = 2654, + [3063] = 2657, + [3064] = 2654, + [3065] = 2651, + [3066] = 2653, + [3067] = 2653, + [3068] = 2654, + [3069] = 2657, + [3070] = 3070, + [3071] = 2650, + [3072] = 2651, + [3073] = 2651, + [3074] = 2650, + [3075] = 2653, + [3076] = 2654, + [3077] = 2937, + [3078] = 2657, + [3079] = 2650, + [3080] = 3080, + [3081] = 2657, + [3082] = 2940, + [3083] = 2651, + [3084] = 2653, + [3085] = 2654, + [3086] = 2654, + [3087] = 2657, + [3088] = 3003, + [3089] = 2650, + [3090] = 2651, + [3091] = 3091, + [3092] = 2649, + [3093] = 2654, + [3094] = 2653, + [3095] = 2654, + [3096] = 2657, + [3097] = 2650, + [3098] = 2653, + [3099] = 2651, + [3100] = 3100, + [3101] = 3101, + [3102] = 2653, + [3103] = 2654, + [3104] = 2942, + [3105] = 3105, + [3106] = 2657, + [3107] = 2991, + [3108] = 2650, + [3109] = 2651, + [3110] = 2991, + [3111] = 2657, + [3112] = 2943, + [3113] = 2991, + [3114] = 2653, + [3115] = 2654, + [3116] = 2657, + [3117] = 2650, + [3118] = 2647, + [3119] = 3105, + [3120] = 3120, + [3121] = 2650, + [3122] = 3122, + [3123] = 3123, + [3124] = 2651, + [3125] = 2657, + [3126] = 3126, + [3127] = 2653, + [3128] = 2654, + [3129] = 2657, + [3130] = 2650, + [3131] = 2651, + [3132] = 2653, + [3133] = 2654, + [3134] = 3134, + [3135] = 3135, + [3136] = 2657, + [3137] = 2650, + [3138] = 3135, + [3139] = 2654, + [3140] = 2651, + [3141] = 2653, + [3142] = 2653, + [3143] = 2654, + [3144] = 2657, + [3145] = 2650, + [3146] = 2651, + [3147] = 2653, + [3148] = 2654, + [3149] = 2657, + [3150] = 2650, + [3151] = 2651, + [3152] = 2651, + [3153] = 2650, + [3154] = 2653, + [3155] = 2654, + [3156] = 2657, + [3157] = 2650, + [3158] = 2657, + [3159] = 2651, + [3160] = 2651, + [3161] = 2653, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4365,4555 +4591,7965 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '#') ADVANCE(190); - if (lookahead == '$') ADVANCE(336); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(489); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(90); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(84); - if (lookahead == ':') ADVANCE(244); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(253); - if (lookahead == '?') ADVANCE(294); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '[') ADVANCE(338); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == ']') ADVANCE(339); - if (lookahead == '_') ADVANCE(349); - if (lookahead == 'a') ADVANCE(505); - if (lookahead == 'b') ADVANCE(498); - if (lookahead == 'c') ADVANCE(540); - if (lookahead == 'd') ADVANCE(512); - if (lookahead == 'e') ADVANCE(538); - if (lookahead == 'f') ADVANCE(549); - if (lookahead == 'i') ADVANCE(524); - if (lookahead == 'l') ADVANCE(519); - if (lookahead == 'm') ADVANCE(497); - if (lookahead == 'n') ADVANCE(494); - if (lookahead == 'p') ADVANCE(496); - if (lookahead == 'r') ADVANCE(521); - if (lookahead == 's') ADVANCE(582); - if (lookahead == 't') ADVANCE(529); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(500); - if (lookahead == 'w') ADVANCE(528); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '#') ADVANCE(265); + if (lookahead == '$') ADVANCE(440); + if (lookahead == '&') ADVANCE(392); + if (lookahead == '\'') ADVANCE(593); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(165); + if (lookahead == '.') ADVANCE(450); + if (lookahead == '/') ADVANCE(159); + if (lookahead == ':') ADVANCE(347); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '<') ADVANCE(161); + if (lookahead == '=') ADVANCE(357); + if (lookahead == '?') ADVANCE(398); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(441); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '_') ADVANCE(453); + if (lookahead == 'a') ADVANCE(609); + if (lookahead == 'b') ADVANCE(602); + if (lookahead == 'c') ADVANCE(644); + if (lookahead == 'd') ADVANCE(616); + if (lookahead == 'e') ADVANCE(642); + if (lookahead == 'f') ADVANCE(653); + if (lookahead == 'i') ADVANCE(628); + if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'm') ADVANCE(601); + if (lookahead == 'n') ADVANCE(598); + if (lookahead == 'p') ADVANCE(600); + if (lookahead == 'r') ADVANCE(625); + if (lookahead == 's') ADVANCE(686); + if (lookahead == 't') ADVANCE(633); + if (lookahead == 'u') ADVANCE(672); + if (lookahead == 'v') ADVANCE(604); + if (lookahead == 'w') ADVANCE(632); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(396); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('g' <= lookahead && lookahead <= 'z')) ADVANCE(589); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(479); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(469); + if (('g' <= lookahead && lookahead <= 'z')) ADVANCE(693); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(583); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(573); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(85); - if (lookahead == '*') ADVANCE(484); - if (lookahead != 0) ADVANCE(483); + if (lookahead == '\n') ADVANCE(160); + if (lookahead == '*') ADVANCE(588); + if (lookahead != 0) ADVANCE(587); END_STATE(); case 2: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '#') ADVANCE(191); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(90); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(84); - if (lookahead == ':') ADVANCE(244); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(253); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '[') ADVANCE(338); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '&') ADVANCE(392); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(165); + if (lookahead == '.') ADVANCE(450); + if (lookahead == '/') ADVANCE(159); + if (lookahead == ':') ADVANCE(347); + if (lookahead == '<') ADVANCE(161); + if (lookahead == '=') ADVANCE(357); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '|') ADVANCE(396); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '$') ADVANCE(336); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '[') ADVANCE(338); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(420); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '$') ADVANCE(440); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(441); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(524); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || ('%' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 4: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '$') ADVANCE(336); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '[') ADVANCE(338); - if (lookahead == '\\') ADVANCE(337); - if (lookahead == ']') ADVANCE(339); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(420); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '$') ADVANCE(440); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '[') ADVANCE(442); + if (lookahead == '\\') ADVANCE(441); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(524); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || ('%' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) if (lookahead == '!' || ('%' <= lookahead && lookahead <= ',') || - lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + ('%' <= lookahead && lookahead <= ',') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + ('%' <= lookahead && lookahead <= ',') || + lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || ('%' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == ']') ADVANCE(339); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + ('%' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == ']') ADVANCE(339); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 13: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || + ('%' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 14: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + ('%' <= lookahead && lookahead <= '-') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(15) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ',') || - (':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + ('%' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 16: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(16) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 17: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 18: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(18) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || + ('%' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 19: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(19) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 20: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 21: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 22: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 23: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '?') || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 24: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); case 25: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 26: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= ',') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 27: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 28: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= ',') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 29: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= ',') || + (':' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 30: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 't') ADVANCE(397); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 31: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 32: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(403); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 33: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(33) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 34: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(34) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 35: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 36: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 37: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(37) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('*' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 38: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(38) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 39: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(39) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 40: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 't') ADVANCE(397); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(40) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 41: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(41) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || + ('*' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 42: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(403); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(42) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 43: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(43) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 44: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 45: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 46: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 47: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == ']') ADVANCE(339); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(47) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= '?') || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 48: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(48) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 49: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(49) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == ']') ADVANCE(339); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(50) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= '?') || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(51) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 52: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(52) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 53: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(53) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 54: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(54) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 55: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(55) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 56: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(56) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 57: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(57) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 58: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(58) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 59: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(59) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 60: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(60) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 61: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(61) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 62: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(62) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 63: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(63) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 64: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(64) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 65: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(65) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 66: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(66) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 67: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(67) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 68: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 't') ADVANCE(397); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(68) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 69: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(69) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 70: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(403); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(70) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || + ('*' <= lookahead && lookahead <= '.') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 71: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(71) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 72: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(72) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || - lookahead == '&' || ('*' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 73: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'b') ADVANCE(434); - if (lookahead == 'c') ADVANCE(426); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == 'f') ADVANCE(423); - if (lookahead == 'i') ADVANCE(392); - if (lookahead == 'l') ADVANCE(425); - if (lookahead == 'm') ADVANCE(362); - if (lookahead == 'r') ADVANCE(388); - if (lookahead == 'v') ADVANCE(370); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(73) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 74: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(74) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 75: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(75) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 76: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(76) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 77: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(77) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 78: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(78) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 79: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(79) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 80: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(80) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 81: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(81) + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 82: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(82) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 83: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(83) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 84: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(84) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 85: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(85) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 86: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(86) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 87: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(87) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 88: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(88) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 89: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(89) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 90: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(90) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 91: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(91) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 92: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(92) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 93: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(93) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 94: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(94) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 95: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(95) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 96: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(96) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 97: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(97) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 98: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(98) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 99: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(99) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 100: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(100) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 101: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(101) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 102: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(102) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 103: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(103) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 104: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(104) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 105: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(105) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 106: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(106) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 107: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(107) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 108: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(108) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 109: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(109) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 110: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(110) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 111: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(111) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 112: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(112) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 113: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(113) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 114: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(114) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 115: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(115) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 116: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(116) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 117: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(117) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 74: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + case 118: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(74) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(118) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 119: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(119) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 120: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(120) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 121: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(121) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 122: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(122) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 123: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(123) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 124: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(124) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 125: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(125) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 126: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(126) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 127: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(127) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 128: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(128) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 129: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(129) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 130: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(130) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 75: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + case 131: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(75) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(131) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 76: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); + case 132: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(76) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(132) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 77: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'd') ADVANCE(421); - if (lookahead == '~') ADVANCE(331); + case 133: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(77) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(133) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 78: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 't') ADVANCE(397); - if (lookahead == '~') ADVANCE(331); + case 134: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(78) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(134) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 79: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(394); - if (lookahead == '~') ADVANCE(331); + case 135: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(79) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(135) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 80: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'w') ADVANCE(403); - if (lookahead == '~') ADVANCE(331); + case 136: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(80) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(136) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || ('*' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 81: - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(488); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(84); - if (lookahead == '@') ADVANCE(332); - if (lookahead == '~') ADVANCE(331); + case 137: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(81) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(137) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 82: - if (lookahead == '#') ADVANCE(191); - if (lookahead == '\'') ADVANCE(488); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(84); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '}') ADVANCE(246); + case 138: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(82) + lookahead == ' ') SKIP(138) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 83: - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(84); + case 139: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(139) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 140: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(140) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 141: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(141) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 142: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(142) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 143: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(143) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 144: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(144) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 145: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(145) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 146: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(146) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 147: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(147) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 148: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(148) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 149: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'b') ADVANCE(538); + if (lookahead == 'c') ADVANCE(530); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == 'f') ADVANCE(527); + if (lookahead == 'i') ADVANCE(496); + if (lookahead == 'l') ADVANCE(529); + if (lookahead == 'm') ADVANCE(466); + if (lookahead == 'r') ADVANCE(492); + if (lookahead == 'v') ADVANCE(474); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(149) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 150: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(150) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 151: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(151) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 152: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(152) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 153: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'd') ADVANCE(525); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(153) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 154: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 't') ADVANCE(501); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(154) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 155: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(498); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(155) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 156: + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'w') ADVANCE(507); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(156) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 157: + if (lookahead == '#') ADVANCE(266); + if (lookahead == '\'') ADVANCE(592); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(159); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(157) + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 158: + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(159); if (lookahead == '#' || - lookahead == '\'') ADVANCE(193); + lookahead == '\'') ADVANCE(268); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(83) + lookahead == ' ') SKIP(158) if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(589); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(693); if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(467); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); END_STATE(); - case 84: - if (lookahead == '*') ADVANCE(85); - if (lookahead == '/') ADVANCE(352); + case 159: + if (lookahead == '*') ADVANCE(160); + if (lookahead == '/') ADVANCE(456); END_STATE(); - case 85: - if (lookahead == '*') ADVANCE(88); - if (lookahead != 0) ADVANCE(85); + case 160: + if (lookahead == '*') ADVANCE(163); + if (lookahead != 0) ADVANCE(160); END_STATE(); - case 86: - if (lookahead == '-') ADVANCE(266); + case 161: + if (lookahead == '-') ADVANCE(370); END_STATE(); - case 87: - if (lookahead == '/') ADVANCE(84); + case 162: + if (lookahead == '/') ADVANCE(159); if (lookahead == '#' || - lookahead == '\'') ADVANCE(193); + lookahead == '\'') ADVANCE(268); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(87) + lookahead == ' ') SKIP(162) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 88: - if (lookahead == '/') ADVANCE(357); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 89: - if (lookahead == '/') ADVANCE(492); - if (lookahead == '\\') ADVANCE(194); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(493); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(491); - END_STATE(); - case 90: - if (lookahead == '>') ADVANCE(296); - END_STATE(); - case 91: - if (lookahead == 'a') ADVANCE(142); - END_STATE(); - case 92: - if (lookahead == 'a') ADVANCE(136); - END_STATE(); - case 93: - if (lookahead == 'a') ADVANCE(160); - END_STATE(); - case 94: - if (lookahead == 'a') ADVANCE(174); - END_STATE(); - case 95: - if (lookahead == 'a') ADVANCE(166); - if (lookahead == 'r') ADVANCE(119); - END_STATE(); - case 96: - if (lookahead == 'a') ADVANCE(169); - END_STATE(); - case 97: - if (lookahead == 'a') ADVANCE(157); - END_STATE(); - case 98: - if (lookahead == 'a') ADVANCE(106); - END_STATE(); - case 99: - if (lookahead == 'a') ADVANCE(163); - END_STATE(); - case 100: - if (lookahead == 'a') ADVANCE(108); - END_STATE(); - case 101: - if (lookahead == 'a') ADVANCE(171); - END_STATE(); - case 102: - if (lookahead == 'b') ADVANCE(172); - if (lookahead == 'l') ADVANCE(134); - END_STATE(); - case 103: - if (lookahead == 'c') ADVANCE(279); - END_STATE(); - case 104: - if (lookahead == 'c') ADVANCE(138); - if (lookahead == 'f') ADVANCE(270); - END_STATE(); - case 105: - if (lookahead == 'c') ADVANCE(125); - END_STATE(); - case 106: - if (lookahead == 'c') ADVANCE(115); - END_STATE(); - case 107: - if (lookahead == 'c') ADVANCE(179); - END_STATE(); - case 108: - if (lookahead == 'c') ADVANCE(180); - END_STATE(); - case 109: - if (lookahead == 'e') ADVANCE(104); - if (lookahead == 'o') ADVANCE(316); - END_STATE(); - case 110: - if (lookahead == 'e') ADVANCE(250); - END_STATE(); - case 111: - if (lookahead == 'e') ADVANCE(313); - END_STATE(); - case 112: - if (lookahead == 'e') ADVANCE(261); - END_STATE(); - case 113: - if (lookahead == 'e') ADVANCE(319); - END_STATE(); - case 114: - if (lookahead == 'e') ADVANCE(343); - END_STATE(); - case 115: - if (lookahead == 'e') ADVANCE(235); - END_STATE(); - case 116: - if (lookahead == 'e') ADVANCE(173); - if (lookahead == 'o') ADVANCE(149); - END_STATE(); - case 117: - if (lookahead == 'e') ADVANCE(144); - END_STATE(); - case 118: - if (lookahead == 'e') ADVANCE(175); - END_STATE(); - case 119: - if (lookahead == 'e') ADVANCE(92); - END_STATE(); - case 120: - if (lookahead == 'e') ADVANCE(168); - END_STATE(); - case 121: - if (lookahead == 'f') ADVANCE(304); - if (lookahead == 'm') ADVANCE(155); - END_STATE(); - case 122: - if (lookahead == 'f') ADVANCE(304); - if (lookahead == 'm') ADVANCE(155); - if (lookahead == 'n') ADVANCE(325); - END_STATE(); - case 123: - if (lookahead == 'f') ADVANCE(310); - END_STATE(); - case 124: - if (lookahead == 'h') ADVANCE(301); - END_STATE(); - case 125: - if (lookahead == 'h') ADVANCE(298); - END_STATE(); - case 126: - if (lookahead == 'h') ADVANCE(131); - END_STATE(); - case 127: - if (lookahead == 'h') ADVANCE(131); - if (lookahead == 'i') ADVANCE(176); - END_STATE(); - case 128: - if (lookahead == 'h') ADVANCE(117); - if (lookahead == 'y') ADVANCE(153); - END_STATE(); - case 129: - if (lookahead == 'i') ADVANCE(123); - if (lookahead == 's') ADVANCE(111); - END_STATE(); - case 130: - if (lookahead == 'i') ADVANCE(103); - END_STATE(); - case 131: - if (lookahead == 'i') ADVANCE(140); - END_STATE(); - case 132: - if (lookahead == 'i') ADVANCE(150); - END_STATE(); - case 133: - if (lookahead == 'i') ADVANCE(147); - END_STATE(); - case 134: - if (lookahead == 'i') ADVANCE(99); - END_STATE(); - case 135: - if (lookahead == 'i') ADVANCE(184); - END_STATE(); - case 136: - if (lookahead == 'k') ADVANCE(340); - END_STATE(); - case 137: - if (lookahead == 'l') ADVANCE(129); - END_STATE(); - case 138: - if (lookahead == 'l') ADVANCE(267); - END_STATE(); - case 139: - if (lookahead == 'l') ADVANCE(96); - if (lookahead == 'o') ADVANCE(143); - END_STATE(); - case 140: - if (lookahead == 'l') ADVANCE(113); - END_STATE(); - case 141: - if (lookahead == 'l') ADVANCE(101); - END_STATE(); - case 142: - if (lookahead == 'm') ADVANCE(120); - END_STATE(); - case 143: - if (lookahead == 'n') ADVANCE(170); - END_STATE(); - case 144: - if (lookahead == 'n') ADVANCE(307); - END_STATE(); - case 145: - if (lookahead == 'n') ADVANCE(333); - END_STATE(); - case 146: - if (lookahead == 'n') ADVANCE(247); - END_STATE(); - case 147: - if (lookahead == 'n') ADVANCE(187); - END_STATE(); - case 148: - if (lookahead == 'o') ADVANCE(156); - END_STATE(); - case 149: - if (lookahead == 'o') ADVANCE(152); - END_STATE(); - case 150: - if (lookahead == 'o') ADVANCE(146); - END_STATE(); - case 151: - if (lookahead == 'o') ADVANCE(162); - END_STATE(); - case 152: - if (lookahead == 'p') ADVANCE(327); - END_STATE(); - case 153: - if (lookahead == 'p') ADVANCE(112); - END_STATE(); - case 154: - if (lookahead == 'p') ADVANCE(98); - END_STATE(); - case 155: - if (lookahead == 'p') ADVANCE(151); - END_STATE(); - case 156: - if (lookahead == 'r') ADVANCE(322); - END_STATE(); - case 157: - if (lookahead == 'r') ADVANCE(241); - END_STATE(); - case 158: - if (lookahead == 'r') ADVANCE(185); - END_STATE(); - case 159: - if (lookahead == 'r') ADVANCE(145); - END_STATE(); - case 160: - if (lookahead == 'r') ADVANCE(182); - END_STATE(); - case 161: - if (lookahead == 'r') ADVANCE(100); - END_STATE(); - case 162: - if (lookahead == 'r') ADVANCE(178); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); case 163: - if (lookahead == 's') ADVANCE(257); + if (lookahead == '/') ADVANCE(461); + if (lookahead != 0) ADVANCE(160); END_STATE(); case 164: - if (lookahead == 's') ADVANCE(276); - END_STATE(); - case 165: - if (lookahead == 's') ADVANCE(285); - END_STATE(); - case 166: - if (lookahead == 's') ADVANCE(130); - END_STATE(); - case 167: - if (lookahead == 's') ADVANCE(110); - END_STATE(); - case 168: - if (lookahead == 's') ADVANCE(154); - END_STATE(); - case 169: - if (lookahead == 's') ADVANCE(164); - END_STATE(); - case 170: - if (lookahead == 's') ADVANCE(177); - if (lookahead == 't') ADVANCE(133); - END_STATE(); - case 171: - if (lookahead == 's') ADVANCE(165); - END_STATE(); - case 172: - if (lookahead == 's') ADVANCE(183); - END_STATE(); - case 173: - if (lookahead == 't') ADVANCE(263); - END_STATE(); - case 174: - if (lookahead == 't') ADVANCE(105); - END_STATE(); - case 175: - if (lookahead == 't') ADVANCE(186); - END_STATE(); - case 176: - if (lookahead == 't') ADVANCE(124); - END_STATE(); - case 177: - if (lookahead == 't') ADVANCE(238); - END_STATE(); - case 178: - if (lookahead == 't') ADVANCE(254); - END_STATE(); - case 179: - if (lookahead == 't') ADVANCE(273); - END_STATE(); - case 180: - if (lookahead == 't') ADVANCE(282); - END_STATE(); - case 181: - if (lookahead == 't') ADVANCE(158); - END_STATE(); - case 182: - if (lookahead == 't') ADVANCE(135); - END_STATE(); - case 183: - if (lookahead == 't') ADVANCE(161); - END_STATE(); - case 184: - if (lookahead == 't') ADVANCE(132); - END_STATE(); - case 185: - if (lookahead == 'u') ADVANCE(107); - END_STATE(); - case 186: - if (lookahead == 'u') ADVANCE(159); - END_STATE(); - case 187: - if (lookahead == 'u') ADVANCE(114); - END_STATE(); - case 188: - if (lookahead == 'y') ADVANCE(153); - END_STATE(); - case 189: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); - END_STATE(); - case 190: - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(360); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 191: - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(361); - END_STATE(); - case 192: - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(472); - END_STATE(); - case 193: - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 194: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(491); - END_STATE(); - case 195: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(487); - END_STATE(); - case 196: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + if (lookahead == '/') ADVANCE(596); + if (lookahead == '\\') ADVANCE(270); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(196) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') ADVANCE(597); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(595); + END_STATE(); + case 165: + if (lookahead == '>') ADVANCE(400); + END_STATE(); + case 166: + if (lookahead == 'a') ADVANCE(217); + END_STATE(); + case 167: + if (lookahead == 'a') ADVANCE(211); + END_STATE(); + case 168: + if (lookahead == 'a') ADVANCE(235); + END_STATE(); + case 169: + if (lookahead == 'a') ADVANCE(249); + END_STATE(); + case 170: + if (lookahead == 'a') ADVANCE(241); + if (lookahead == 'r') ADVANCE(194); + END_STATE(); + case 171: + if (lookahead == 'a') ADVANCE(244); + END_STATE(); + case 172: + if (lookahead == 'a') ADVANCE(232); + END_STATE(); + case 173: + if (lookahead == 'a') ADVANCE(181); + END_STATE(); + case 174: + if (lookahead == 'a') ADVANCE(238); + END_STATE(); + case 175: + if (lookahead == 'a') ADVANCE(183); + END_STATE(); + case 176: + if (lookahead == 'a') ADVANCE(246); + END_STATE(); + case 177: + if (lookahead == 'b') ADVANCE(247); + if (lookahead == 'l') ADVANCE(209); + END_STATE(); + case 178: + if (lookahead == 'c') ADVANCE(383); + END_STATE(); + case 179: + if (lookahead == 'c') ADVANCE(213); + if (lookahead == 'f') ADVANCE(374); + END_STATE(); + case 180: + if (lookahead == 'c') ADVANCE(200); + END_STATE(); + case 181: + if (lookahead == 'c') ADVANCE(190); + END_STATE(); + case 182: + if (lookahead == 'c') ADVANCE(254); + END_STATE(); + case 183: + if (lookahead == 'c') ADVANCE(255); + END_STATE(); + case 184: + if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'o') ADVANCE(420); + END_STATE(); + case 185: + if (lookahead == 'e') ADVANCE(354); + END_STATE(); + case 186: + if (lookahead == 'e') ADVANCE(417); + END_STATE(); + case 187: + if (lookahead == 'e') ADVANCE(365); + END_STATE(); + case 188: + if (lookahead == 'e') ADVANCE(423); + END_STATE(); + case 189: + if (lookahead == 'e') ADVANCE(447); + END_STATE(); + case 190: + if (lookahead == 'e') ADVANCE(338); + END_STATE(); + case 191: + if (lookahead == 'e') ADVANCE(248); + if (lookahead == 'o') ADVANCE(224); + END_STATE(); + case 192: + if (lookahead == 'e') ADVANCE(219); + END_STATE(); + case 193: + if (lookahead == 'e') ADVANCE(250); + END_STATE(); + case 194: + if (lookahead == 'e') ADVANCE(167); + END_STATE(); + case 195: + if (lookahead == 'e') ADVANCE(243); + END_STATE(); + case 196: + if (lookahead == 'f') ADVANCE(408); + if (lookahead == 'm') ADVANCE(230); + END_STATE(); + case 197: + if (lookahead == 'f') ADVANCE(408); + if (lookahead == 'm') ADVANCE(230); + if (lookahead == 'n') ADVANCE(429); + END_STATE(); + case 198: + if (lookahead == 'f') ADVANCE(414); + END_STATE(); + case 199: + if (lookahead == 'h') ADVANCE(405); + END_STATE(); + case 200: + if (lookahead == 'h') ADVANCE(402); + END_STATE(); + case 201: + if (lookahead == 'h') ADVANCE(206); + END_STATE(); + case 202: + if (lookahead == 'h') ADVANCE(206); + if (lookahead == 'i') ADVANCE(251); + END_STATE(); + case 203: + if (lookahead == 'h') ADVANCE(192); + if (lookahead == 'y') ADVANCE(228); + END_STATE(); + case 204: + if (lookahead == 'i') ADVANCE(198); + if (lookahead == 's') ADVANCE(186); + END_STATE(); + case 205: + if (lookahead == 'i') ADVANCE(178); + END_STATE(); + case 206: + if (lookahead == 'i') ADVANCE(215); + END_STATE(); + case 207: + if (lookahead == 'i') ADVANCE(225); + END_STATE(); + case 208: + if (lookahead == 'i') ADVANCE(222); + END_STATE(); + case 209: + if (lookahead == 'i') ADVANCE(174); + END_STATE(); + case 210: + if (lookahead == 'i') ADVANCE(259); + END_STATE(); + case 211: + if (lookahead == 'k') ADVANCE(444); + END_STATE(); + case 212: + if (lookahead == 'l') ADVANCE(204); + END_STATE(); + case 213: + if (lookahead == 'l') ADVANCE(371); + END_STATE(); + case 214: + if (lookahead == 'l') ADVANCE(171); + if (lookahead == 'o') ADVANCE(218); + END_STATE(); + case 215: + if (lookahead == 'l') ADVANCE(188); + END_STATE(); + case 216: + if (lookahead == 'l') ADVANCE(176); + END_STATE(); + case 217: + if (lookahead == 'm') ADVANCE(195); + END_STATE(); + case 218: + if (lookahead == 'n') ADVANCE(245); + END_STATE(); + case 219: + if (lookahead == 'n') ADVANCE(411); + END_STATE(); + case 220: + if (lookahead == 'n') ADVANCE(437); + END_STATE(); + case 221: + if (lookahead == 'n') ADVANCE(351); + END_STATE(); + case 222: + if (lookahead == 'n') ADVANCE(262); + END_STATE(); + case 223: + if (lookahead == 'o') ADVANCE(231); + END_STATE(); + case 224: + if (lookahead == 'o') ADVANCE(227); + END_STATE(); + case 225: + if (lookahead == 'o') ADVANCE(221); + END_STATE(); + case 226: + if (lookahead == 'o') ADVANCE(237); + END_STATE(); + case 227: + if (lookahead == 'p') ADVANCE(431); + END_STATE(); + case 228: + if (lookahead == 'p') ADVANCE(187); + END_STATE(); + case 229: + if (lookahead == 'p') ADVANCE(173); + END_STATE(); + case 230: + if (lookahead == 'p') ADVANCE(226); + END_STATE(); + case 231: + if (lookahead == 'r') ADVANCE(426); + END_STATE(); + case 232: + if (lookahead == 'r') ADVANCE(344); + END_STATE(); + case 233: + if (lookahead == 'r') ADVANCE(260); + END_STATE(); + case 234: + if (lookahead == 'r') ADVANCE(220); + END_STATE(); + case 235: + if (lookahead == 'r') ADVANCE(257); + END_STATE(); + case 236: + if (lookahead == 'r') ADVANCE(175); + END_STATE(); + case 237: + if (lookahead == 'r') ADVANCE(253); + END_STATE(); + case 238: + if (lookahead == 's') ADVANCE(361); + END_STATE(); + case 239: + if (lookahead == 's') ADVANCE(380); + END_STATE(); + case 240: + if (lookahead == 's') ADVANCE(389); + END_STATE(); + case 241: + if (lookahead == 's') ADVANCE(205); + END_STATE(); + case 242: + if (lookahead == 's') ADVANCE(185); + END_STATE(); + case 243: + if (lookahead == 's') ADVANCE(229); + END_STATE(); + case 244: + if (lookahead == 's') ADVANCE(239); + END_STATE(); + case 245: + if (lookahead == 's') ADVANCE(252); + if (lookahead == 't') ADVANCE(208); + END_STATE(); + case 246: + if (lookahead == 's') ADVANCE(240); + END_STATE(); + case 247: + if (lookahead == 's') ADVANCE(258); + END_STATE(); + case 248: + if (lookahead == 't') ADVANCE(367); + END_STATE(); + case 249: + if (lookahead == 't') ADVANCE(180); + END_STATE(); + case 250: + if (lookahead == 't') ADVANCE(261); + END_STATE(); + case 251: + if (lookahead == 't') ADVANCE(199); + END_STATE(); + case 252: + if (lookahead == 't') ADVANCE(341); + END_STATE(); + case 253: + if (lookahead == 't') ADVANCE(358); + END_STATE(); + case 254: + if (lookahead == 't') ADVANCE(377); + END_STATE(); + case 255: + if (lookahead == 't') ADVANCE(386); + END_STATE(); + case 256: + if (lookahead == 't') ADVANCE(233); + END_STATE(); + case 257: + if (lookahead == 't') ADVANCE(210); + END_STATE(); + case 258: + if (lookahead == 't') ADVANCE(236); + END_STATE(); + case 259: + if (lookahead == 't') ADVANCE(207); + END_STATE(); + case 260: + if (lookahead == 'u') ADVANCE(182); + END_STATE(); + case 261: + if (lookahead == 'u') ADVANCE(234); + END_STATE(); + case 262: + if (lookahead == 'u') ADVANCE(189); + END_STATE(); + case 263: + if (lookahead == 'y') ADVANCE(228); + END_STATE(); + case 264: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(582); + END_STATE(); + case 265: + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 266: + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + END_STATE(); + case 267: + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(576); + END_STATE(); + case 268: + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 269: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(591); + END_STATE(); + case 270: + if (lookahead != 0 && + lookahead != '\n') ADVANCE(595); + END_STATE(); + case 271: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(271) + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 272: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(272) + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 273: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(273) + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 274: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(274) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 275: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(275) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || ('%' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 197: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); + case 276: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(197) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(276) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || ('%' <= lookahead && lookahead <= ':') || ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); + lookahead == '^') ADVANCE(581); if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); - case 198: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '@') ADVANCE(332); - if (lookahead == ']') ADVANCE(339); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); + case 277: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(198) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); + lookahead == ' ') SKIP(277) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); if (lookahead == '!' || ('%' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 199: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(199) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 200: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(200) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 201: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(201) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 202: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(202) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 203: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(203) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 204: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(204) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 205: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(205) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 206: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(206) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 207: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(207) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 208: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(208) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - ('%' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 209: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '?') ADVANCE(295); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(209) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 210: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(210) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 211: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(211) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 212: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(212) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 213: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(213) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 214: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'e') ADVANCE(408); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(214) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (lookahead == '_' || - ('f' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 215: - if (eof) ADVANCE(234); - if (lookahead == '"') ADVANCE(482); - if (lookahead == '\'') ADVANCE(490); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(473); - if (lookahead == '@') ADVANCE(332); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(215) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 216: - if (eof) ADVANCE(234); - if (lookahead == '#') ADVANCE(191); - if (lookahead == '&') ADVANCE(288); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(90); - if (lookahead == '.') ADVANCE(346); - if (lookahead == '/') ADVANCE(84); - if (lookahead == ':') ADVANCE(244); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '<') ADVANCE(86); - if (lookahead == '=') ADVANCE(253); - if (lookahead == '?') ADVANCE(294); - if (lookahead == '@') ADVANCE(332); - if (lookahead == ']') ADVANCE(339); - if (lookahead == '_') ADVANCE(348); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'e') ADVANCE(137); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(122); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(128); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(127); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '~') ADVANCE(331); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(216) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(481); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 217: - if (eof) ADVANCE(234); - if (lookahead == '#') ADVANCE(191); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(290); - if (lookahead == '/') ADVANCE(84); - if (lookahead == ':') ADVANCE(244); - if (lookahead == '=') ADVANCE(253); - if (lookahead == 'a') ADVANCE(373); - if (lookahead == 'b') ADVANCE(365); - if (lookahead == 'c') ADVANCE(410); - if (lookahead == 'd') ADVANCE(382); - if (lookahead == 'i') ADVANCE(412); - if (lookahead == 'l') ADVANCE(389); - if (lookahead == 'n') ADVANCE(364); - if (lookahead == 'p') ADVANCE(366); - if (lookahead == 's') ADVANCE(459); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(217) - if (lookahead == '_' || - ('e' <= lookahead && lookahead <= 'z')) ADVANCE(468); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 218: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == '\'') ADVANCE(192); - if (lookahead == '(') ADVANCE(290); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(218) - if (lookahead == '!' || - ('%' <= lookahead && lookahead <= '-') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(470); - END_STATE(); - case 219: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(219) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ',') || - (':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 220: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(220) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= ',') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 221: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(221) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 222: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(222) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 223: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == ']') ADVANCE(339); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'e') ADVANCE(137); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(128); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(127); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(223) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '-') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - END_STATE(); - case 224: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == ']') ADVANCE(339); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'e') ADVANCE(137); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(128); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(127); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(224) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - END_STATE(); - case 225: - if (eof) ADVANCE(234); - if (lookahead == '&') ADVANCE(289); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(225) - if (lookahead == '!' || - lookahead == '%' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 226: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(226) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - (':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 227: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(227) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 228: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == '?') ADVANCE(295); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(228) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 229: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '-') ADVANCE(476); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(229) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 230: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == ']') ADVANCE(339); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'e') ADVANCE(137); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(128); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(127); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(230) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - END_STATE(); - case 231: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '.') ADVANCE(347); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(231) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '-') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 232: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == ']') ADVANCE(339); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'e') ADVANCE(137); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(128); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(127); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(232) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - END_STATE(); - case 233: - if (eof) ADVANCE(234); - if (lookahead == ')') ADVANCE(291); - if (lookahead == '/') ADVANCE(473); - if (lookahead == ';') ADVANCE(330); - if (lookahead == 'a') ADVANCE(102); - if (lookahead == 'b') ADVANCE(95); - if (lookahead == 'c') ADVANCE(139); - if (lookahead == 'd') ADVANCE(109); - if (lookahead == 'f') ADVANCE(148); - if (lookahead == 'i') ADVANCE(121); - if (lookahead == 'l') ADVANCE(116); - if (lookahead == 'm') ADVANCE(94); - if (lookahead == 'n') ADVANCE(91); - if (lookahead == 'p') ADVANCE(93); - if (lookahead == 'r') ADVANCE(118); - if (lookahead == 's') ADVANCE(181); - if (lookahead == 't') ADVANCE(188); - if (lookahead == 'u') ADVANCE(167); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(126); - if (lookahead == '{') ADVANCE(245); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(246); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(233) - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '.') || - (':' <= lookahead && lookahead <= '?') || - lookahead == '^') ADVANCE(477); - END_STATE(); - case 234: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_namespace); - END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_namespace); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_namespace); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_const); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_const); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 240: - ACCEPT_TOKEN(anon_sym_const); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 241: - ACCEPT_TOKEN(anon_sym_var); - END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_var); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 243: - ACCEPT_TOKEN(anon_sym_var); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 244: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 245: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 246: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 247: - ACCEPT_TOKEN(anon_sym_partition); - END_STATE(); - case 248: - ACCEPT_TOKEN(anon_sym_partition); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 249: - ACCEPT_TOKEN(anon_sym_partition); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 250: - ACCEPT_TOKEN(anon_sym_use); - END_STATE(); - case 251: - ACCEPT_TOKEN(anon_sym_use); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_use); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 253: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 255: - ACCEPT_TOKEN(anon_sym_import); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_import); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_alias); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_alias); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_alias); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == 'c') ADVANCE(542); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == 'c') ADVANCE(141); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_type); - if (lookahead == 'c') ADVANCE(411); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 263: - ACCEPT_TOKEN(anon_sym_let); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_let); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 265: - ACCEPT_TOKEN(anon_sym_let); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 266: - ACCEPT_TOKEN(anon_sym_LT_DASH); - END_STATE(); - case 267: - ACCEPT_TOKEN(anon_sym_decl); - END_STATE(); - case 268: - ACCEPT_TOKEN(anon_sym_decl); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 269: - ACCEPT_TOKEN(anon_sym_decl); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 270: - ACCEPT_TOKEN(anon_sym_def); - END_STATE(); - case 271: - ACCEPT_TOKEN(anon_sym_def); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 272: - ACCEPT_TOKEN(anon_sym_def); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 273: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 274: - ACCEPT_TOKEN(anon_sym_struct); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 275: - ACCEPT_TOKEN(anon_sym_struct); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 276: - ACCEPT_TOKEN(anon_sym_class); - END_STATE(); - case 277: - ACCEPT_TOKEN(anon_sym_class); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); END_STATE(); case 278: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(278) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 279: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(279) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 280: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(280) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 281: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(281) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 282: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(282) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 283: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(283) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 284: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(284) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 285: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(285) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 286: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(286) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 287: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(287) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 288: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(288) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 289: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(289) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 290: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(290) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 291: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(291) + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 292: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(292) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 293: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(293) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 294: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(294) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 295: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(295) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 296: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(296) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 297: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(297) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 298: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(298) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 299: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(299) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 300: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(300) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 301: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(301) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + ('%' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 302: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '?') ADVANCE(399); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(302) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 303: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(303) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 304: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(304) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 305: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(305) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 306: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(306) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 307: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(307) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 308: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(308) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 309: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'e') ADVANCE(512); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(309) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('f' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 310: + if (eof) ADVANCE(337); + if (lookahead == '"') ADVANCE(586); + if (lookahead == '\'') ADVANCE(594); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(577); + if (lookahead == '@') ADVANCE(436); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(310) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ':') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 311: + if (eof) ADVANCE(337); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '&') ADVANCE(392); + if (lookahead == '\'') ADVANCE(267); + if (lookahead == '(') ADVANCE(394); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(165); + if (lookahead == '.') ADVANCE(450); + if (lookahead == '/') ADVANCE(159); + if (lookahead == ':') ADVANCE(347); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '<') ADVANCE(161); + if (lookahead == '=') ADVANCE(357); + if (lookahead == '?') ADVANCE(398); + if (lookahead == '@') ADVANCE(436); + if (lookahead == ']') ADVANCE(443); + if (lookahead == '_') ADVANCE(452); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(197); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(203); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(202); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(396); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '~') ADVANCE(435); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(311) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(585); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 312: + if (eof) ADVANCE(337); + if (lookahead == '#') ADVANCE(266); + if (lookahead == '\'') ADVANCE(267); + if (lookahead == '(') ADVANCE(394); + if (lookahead == '/') ADVANCE(159); + if (lookahead == ':') ADVANCE(347); + if (lookahead == '=') ADVANCE(357); + if (lookahead == 'a') ADVANCE(477); + if (lookahead == 'b') ADVANCE(469); + if (lookahead == 'c') ADVANCE(514); + if (lookahead == 'd') ADVANCE(486); + if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'l') ADVANCE(493); + if (lookahead == 'n') ADVANCE(468); + if (lookahead == 'p') ADVANCE(470); + if (lookahead == 's') ADVANCE(563); + if (lookahead == 't') ADVANCE(570); + if (lookahead == 'u') ADVANCE(549); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(312) + if (lookahead == '_' || + ('e' <= lookahead && lookahead <= 'z')) ADVANCE(572); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(574); + END_STATE(); + case 313: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(313) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 314: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(314) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 315: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(203); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(202); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(315) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + END_STATE(); + case 316: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(203); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(202); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(316) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + END_STATE(); + case 317: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(203); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(202); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(317) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + END_STATE(); + case 318: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(318) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 319: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(319) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 320: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(320) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 321: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(321) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 322: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(322) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 323: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(323) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 324: + if (eof) ADVANCE(337); + if (lookahead == '&') ADVANCE(393); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(324) + if (lookahead == '!' || + lookahead == '%' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 325: + if (eof) ADVANCE(337); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(325) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 326: + if (eof) ADVANCE(337); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(326) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 327: + if (eof) ADVANCE(337); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(203); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(327) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + END_STATE(); + case 328: + if (eof) ADVANCE(337); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(203); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(202); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(328) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + END_STATE(); + case 329: + if (eof) ADVANCE(337); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == ']') ADVANCE(443); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'e') ADVANCE(212); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(203); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(202); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(329) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + END_STATE(); + case 330: + if (eof) ADVANCE(337); + if (lookahead == ')') ADVANCE(395); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(330) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + (':' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 331: + if (eof) ADVANCE(337); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(331) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 332: + if (eof) ADVANCE(337); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(332) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 333: + if (eof) ADVANCE(337); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == '?') ADVANCE(399); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(333) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 334: + if (eof) ADVANCE(337); + if (lookahead == '-') ADVANCE(580); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(334) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 335: + if (eof) ADVANCE(337); + if (lookahead == '.') ADVANCE(451); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(335) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '-') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 336: + if (eof) ADVANCE(337); + if (lookahead == '/') ADVANCE(577); + if (lookahead == ':') ADVANCE(348); + if (lookahead == ';') ADVANCE(434); + if (lookahead == 'a') ADVANCE(177); + if (lookahead == 'b') ADVANCE(170); + if (lookahead == 'c') ADVANCE(214); + if (lookahead == 'd') ADVANCE(184); + if (lookahead == 'f') ADVANCE(223); + if (lookahead == 'i') ADVANCE(196); + if (lookahead == 'l') ADVANCE(191); + if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'p') ADVANCE(168); + if (lookahead == 'r') ADVANCE(193); + if (lookahead == 's') ADVANCE(256); + if (lookahead == 't') ADVANCE(263); + if (lookahead == 'u') ADVANCE(242); + if (lookahead == 'v') ADVANCE(172); + if (lookahead == 'w') ADVANCE(201); + if (lookahead == '{') ADVANCE(349); + if (lookahead == '|') ADVANCE(397); + if (lookahead == '}') ADVANCE(350); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(336) + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '.') || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^') ADVANCE(581); + END_STATE(); + case 337: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 338: + ACCEPT_TOKEN(anon_sym_namespace); + END_STATE(); + case 339: + ACCEPT_TOKEN(anon_sym_namespace); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 340: + ACCEPT_TOKEN(anon_sym_namespace); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 341: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 342: + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 343: + ACCEPT_TOKEN(anon_sym_const); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 344: + ACCEPT_TOKEN(anon_sym_var); + END_STATE(); + case 345: + ACCEPT_TOKEN(anon_sym_var); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 346: + ACCEPT_TOKEN(anon_sym_var); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 347: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 348: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); + END_STATE(); + case 349: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 350: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 351: + ACCEPT_TOKEN(anon_sym_partition); + END_STATE(); + case 352: + ACCEPT_TOKEN(anon_sym_partition); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 353: + ACCEPT_TOKEN(anon_sym_partition); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 354: + ACCEPT_TOKEN(anon_sym_use); + END_STATE(); + case 355: + ACCEPT_TOKEN(anon_sym_use); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 356: + ACCEPT_TOKEN(anon_sym_use); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 357: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 358: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 359: + ACCEPT_TOKEN(anon_sym_import); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 360: + ACCEPT_TOKEN(anon_sym_import); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 361: + ACCEPT_TOKEN(anon_sym_alias); + END_STATE(); + case 362: + ACCEPT_TOKEN(anon_sym_alias); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_alias); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 364: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'c') ADVANCE(646); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 365: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'c') ADVANCE(216); + END_STATE(); + case 366: + ACCEPT_TOKEN(anon_sym_type); + if (lookahead == 'c') ADVANCE(515); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_let); + END_STATE(); + case 368: + ACCEPT_TOKEN(anon_sym_let); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 369: + ACCEPT_TOKEN(anon_sym_let); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 370: + ACCEPT_TOKEN(anon_sym_LT_DASH); + END_STATE(); + case 371: + ACCEPT_TOKEN(anon_sym_decl); + END_STATE(); + case 372: + ACCEPT_TOKEN(anon_sym_decl); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 373: + ACCEPT_TOKEN(anon_sym_decl); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_def); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_def); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 376: + ACCEPT_TOKEN(anon_sym_def); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 377: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 378: + ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 379: + ACCEPT_TOKEN(anon_sym_struct); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 380: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 381: + ACCEPT_TOKEN(anon_sym_class); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 382: ACCEPT_TOKEN(anon_sym_class); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 279: + case 383: ACCEPT_TOKEN(anon_sym_basic); END_STATE(); - case 280: + case 384: ACCEPT_TOKEN(anon_sym_basic); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 281: + case 385: ACCEPT_TOKEN(anon_sym_basic); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 282: + case 386: ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); - case 283: + case 387: ACCEPT_TOKEN(anon_sym_abstract); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 284: + case 388: ACCEPT_TOKEN(anon_sym_abstract); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 285: + case 389: ACCEPT_TOKEN(anon_sym_typeclass); END_STATE(); - case 286: + case 390: ACCEPT_TOKEN(anon_sym_typeclass); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 287: + case 391: ACCEPT_TOKEN(anon_sym_typeclass); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 288: + case 392: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 289: + case 393: ACCEPT_TOKEN(anon_sym_AMP); if (lookahead == '!' || lookahead == '%' || @@ -8922,18 +12558,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); END_STATE(); - case 290: + case 394: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 291: + case 395: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 292: + case 396: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 293: + case 397: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '!' || lookahead == '%' || @@ -8942,12 +12578,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); END_STATE(); - case 294: + case 398: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 295: + case 399: ACCEPT_TOKEN(anon_sym_QMARK); if (lookahead == '!' || lookahead == '%' || @@ -8956,12 +12592,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); END_STATE(); - case 296: + case 400: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 297: + case 401: ACCEPT_TOKEN(anon_sym_DASH_GT); if (lookahead == '!' || lookahead == '%' || @@ -8970,251 +12606,251 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); END_STATE(); - case 298: + case 402: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 299: + case 403: ACCEPT_TOKEN(anon_sym_match); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 300: + case 404: ACCEPT_TOKEN(anon_sym_match); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 301: + case 405: ACCEPT_TOKEN(anon_sym_with); END_STATE(); - case 302: + case 406: ACCEPT_TOKEN(anon_sym_with); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 303: + case 407: ACCEPT_TOKEN(anon_sym_with); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 304: + case 408: ACCEPT_TOKEN(anon_sym_if); END_STATE(); - case 305: + case 409: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 306: + case 410: ACCEPT_TOKEN(anon_sym_if); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 307: + case 411: ACCEPT_TOKEN(anon_sym_then); END_STATE(); - case 308: + case 412: ACCEPT_TOKEN(anon_sym_then); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 309: + case 413: ACCEPT_TOKEN(anon_sym_then); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 310: + case 414: ACCEPT_TOKEN(anon_sym_elif); END_STATE(); - case 311: + case 415: ACCEPT_TOKEN(anon_sym_elif); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 312: + case 416: ACCEPT_TOKEN(anon_sym_elif); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 313: + case 417: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 314: + case 418: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 315: + case 419: ACCEPT_TOKEN(anon_sym_else); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 316: + case 420: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 317: + case 421: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 318: + case 422: ACCEPT_TOKEN(anon_sym_do); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 319: + case 423: ACCEPT_TOKEN(anon_sym_while); END_STATE(); - case 320: + case 424: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 321: + case 425: ACCEPT_TOKEN(anon_sym_while); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 322: + case 426: ACCEPT_TOKEN(anon_sym_for); END_STATE(); - case 323: + case 427: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 324: + case 428: ACCEPT_TOKEN(anon_sym_for); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 325: + case 429: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 326: + case 430: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 327: + case 431: ACCEPT_TOKEN(anon_sym_loop); END_STATE(); - case 328: + case 432: ACCEPT_TOKEN(anon_sym_loop); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 329: + case 433: ACCEPT_TOKEN(anon_sym_loop); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 330: + case 434: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 331: + case 435: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 332: + case 436: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 333: + case 437: ACCEPT_TOKEN(anon_sym_return); END_STATE(); - case 334: + case 438: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 335: + case 439: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 336: + case 440: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 337: + case 441: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 338: + case 442: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 339: + case 443: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 340: + case 444: ACCEPT_TOKEN(anon_sym_break); END_STATE(); - case 341: + case 445: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 342: + case 446: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 343: + case 447: ACCEPT_TOKEN(anon_sym_continue); END_STATE(); - case 344: + case 448: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 345: + case 449: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 346: + case 450: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 347: + case 451: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '!' || lookahead == '%' || @@ -9223,42 +12859,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); END_STATE(); - case 348: + case 452: ACCEPT_TOKEN(anon_sym__); END_STATE(); - case 349: + case 453: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); - case 350: + case 454: ACCEPT_TOKEN(sym__line_comment); - if (lookahead == '\n') ADVANCE(487); - if (lookahead == '"') ADVANCE(355); - if (lookahead == '/') ADVANCE(351); - if (lookahead == '\\') ADVANCE(356); - if (lookahead != 0) ADVANCE(351); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '"') ADVANCE(459); + if (lookahead == '/') ADVANCE(455); + if (lookahead == '\\') ADVANCE(460); + if (lookahead != 0) ADVANCE(455); END_STATE(); - case 351: + case 455: ACCEPT_TOKEN(sym__line_comment); - if (lookahead == '\n') ADVANCE(487); - if (lookahead == '"') ADVANCE(355); - if (lookahead == '\\') ADVANCE(356); - if (lookahead != 0) ADVANCE(351); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '"') ADVANCE(459); + if (lookahead == '\\') ADVANCE(460); + if (lookahead != 0) ADVANCE(455); END_STATE(); - case 352: + case 456: ACCEPT_TOKEN(sym__line_comment); - if (lookahead == '/') ADVANCE(355); + if (lookahead == '/') ADVANCE(459); if (lookahead != 0 && - lookahead != '\n') ADVANCE(355); + lookahead != '\n') ADVANCE(459); END_STATE(); - case 353: + case 457: ACCEPT_TOKEN(sym__line_comment); - if (lookahead == '/') ADVANCE(354); + if (lookahead == '/') ADVANCE(458); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -9266,11 +12902,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(354); + lookahead == '|') ADVANCE(458); if (lookahead != 0 && - lookahead != '\n') ADVANCE(355); + lookahead != '\n') ADVANCE(459); END_STATE(); - case 354: + case 458: ACCEPT_TOKEN(sym__line_comment); if (lookahead == '!' || lookahead == '%' || @@ -9279,30 +12915,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(354); + lookahead == '|') ADVANCE(458); if (lookahead != 0 && - lookahead != '\n') ADVANCE(355); + lookahead != '\n') ADVANCE(459); END_STATE(); - case 355: + case 459: ACCEPT_TOKEN(sym__line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(355); + lookahead != '\n') ADVANCE(459); END_STATE(); - case 356: + case 460: ACCEPT_TOKEN(sym__line_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(351); + lookahead != '\n') ADVANCE(455); END_STATE(); - case 357: + case 461: ACCEPT_TOKEN(sym__block_comment); END_STATE(); - case 358: + case 462: ACCEPT_TOKEN(sym__block_comment); - if (lookahead == '\\') ADVANCE(195); + if (lookahead == '\\') ADVANCE(269); if (lookahead != 0 && - lookahead != '"') ADVANCE(487); + lookahead != '"') ADVANCE(591); END_STATE(); - case 359: + case 463: ACCEPT_TOKEN(sym__block_comment); if (lookahead == '!' || lookahead == '%' || @@ -9311,803 +12947,803 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); END_STATE(); - case 360: + case 464: ACCEPT_TOKEN(sym_typeclass_identifier); - if (lookahead == '_') ADVANCE(589); + if (lookahead == '_') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(360); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(464); END_STATE(); - case 361: + case 465: ACCEPT_TOKEN(sym_typeclass_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(361); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(465); END_STATE(); - case 362: + case 466: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'a') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 363: + case 467: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(406); + if (lookahead == 'a') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 364: + case 468: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(413); + if (lookahead == 'a') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 365: + case 469: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(443); + if (lookahead == 'a') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 366: + case 470: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(438); + if (lookahead == 'a') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 367: + case 471: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'a') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 368: + case 472: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(446); + if (lookahead == 'a') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 369: + case 473: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(440); + if (lookahead == 'a') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 370: + case 474: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(433); + if (lookahead == 'a') ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 371: + case 475: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(379); + if (lookahead == 'a') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 372: + case 476: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'a') ADVANCE(447); + if (lookahead == 'a') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 373: + case 477: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'b') ADVANCE(449); - if (lookahead == 'l') ADVANCE(405); + if (lookahead == 'b') ADVANCE(553); + if (lookahead == 'l') ADVANCE(509); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 374: + case 478: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'c') ADVANCE(280); + if (lookahead == 'c') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 375: + case 479: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'c') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 376: + case 480: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'c') ADVANCE(407); - if (lookahead == 'f') ADVANCE(271); + if (lookahead == 'c') ADVANCE(511); + if (lookahead == 'f') ADVANCE(375); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 377: + case 481: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'c') ADVANCE(385); + if (lookahead == 'c') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 378: + case 482: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'c') ADVANCE(454); + if (lookahead == 'c') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 379: + case 483: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'c') ADVANCE(455); + if (lookahead == 'c') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 380: + case 484: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(320); + if (lookahead == 'e') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 381: + case 485: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(344); + if (lookahead == 'e') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 382: + case 486: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(376); + if (lookahead == 'e') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 383: + case 487: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(251); + if (lookahead == 'e') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 384: + case 488: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(262); + if (lookahead == 'e') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 385: + case 489: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(236); + if (lookahead == 'e') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 386: + case 490: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(314); + if (lookahead == 'e') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 387: + case 491: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(363); + if (lookahead == 'e') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 388: + case 492: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(451); + if (lookahead == 'e') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 389: + case 493: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(452); + if (lookahead == 'e') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 390: + case 494: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'e') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 391: + case 495: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'e') ADVANCE(444); + if (lookahead == 'e') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 392: + case 496: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'f') ADVANCE(305); + if (lookahead == 'f') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 393: + case 497: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'f') ADVANCE(311); + if (lookahead == 'f') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 394: + case 498: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'h') ADVANCE(398); + if (lookahead == 'h') ADVANCE(502); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 395: + case 499: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'h') ADVANCE(299); + if (lookahead == 'h') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 396: + case 500: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'h') ADVANCE(302); + if (lookahead == 'h') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 397: + case 501: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'h') ADVANCE(390); + if (lookahead == 'h') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 398: + case 502: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(409); + if (lookahead == 'i') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 399: + case 503: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(393); - if (lookahead == 's') ADVANCE(386); + if (lookahead == 'i') ADVANCE(497); + if (lookahead == 's') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 400: + case 504: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(418); + if (lookahead == 'i') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 401: + case 505: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(374); + if (lookahead == 'i') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 402: + case 506: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(462); + if (lookahead == 'i') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 403: + case 507: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(458); + if (lookahead == 'i') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 404: + case 508: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(424); + if (lookahead == 'i') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 405: + case 509: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'i') ADVANCE(369); + if (lookahead == 'i') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 406: + case 510: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'k') ADVANCE(341); + if (lookahead == 'k') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 407: - ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'l') ADVANCE(268); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 408: - ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'l') ADVANCE(399); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 409: - ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'l') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 410: - ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'l') ADVANCE(368); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); - END_STATE(); - case 411: + case 511: ACCEPT_TOKEN(sym_name_identifier); if (lookahead == 'l') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 412: + case 512: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'm') ADVANCE(429); + if (lookahead == 'l') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 413: + case 513: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'm') ADVANCE(391); + if (lookahead == 'l') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 414: + case 514: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'n') ADVANCE(334); + if (lookahead == 'l') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 415: + case 515: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'n') ADVANCE(248); + if (lookahead == 'l') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 416: + case 516: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'n') ADVANCE(448); + if (lookahead == 'm') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 417: + case 517: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'n') ADVANCE(308); + if (lookahead == 'm') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 418: + case 518: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'n') ADVANCE(465); + if (lookahead == 'n') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 419: + case 519: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'n') ADVANCE(457); + if (lookahead == 'n') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 420: + case 520: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(419); + if (lookahead == 'n') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 421: + case 521: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(317); + if (lookahead == 'n') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 422: + case 522: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'n') ADVANCE(569); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 423: + case 523: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(432); + if (lookahead == 'n') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 424: + case 524: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(415); + if (lookahead == 'o') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 425: + case 525: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(422); + if (lookahead == 'o') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 426: + case 526: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(416); + if (lookahead == 'o') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 427: + case 527: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'o') ADVANCE(439); + if (lookahead == 'o') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 428: + case 528: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'p') ADVANCE(328); + if (lookahead == 'o') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 429: + case 529: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'p') ADVANCE(427); + if (lookahead == 'o') ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 430: + case 530: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'p') ADVANCE(367); + if (lookahead == 'o') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 431: + case 531: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'p') ADVANCE(384); + if (lookahead == 'o') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 432: + case 532: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(323); + if (lookahead == 'p') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 433: + case 533: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(242); + if (lookahead == 'p') ADVANCE(531); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 434: + case 534: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(387); + if (lookahead == 'p') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 435: + case 535: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(414); + if (lookahead == 'p') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 436: + case 536: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(464); + if (lookahead == 'r') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 437: + case 537: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(371); + if (lookahead == 'r') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 438: + case 538: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(460); + if (lookahead == 'r') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 439: + case 539: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == 'r') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 440: + case 540: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(258); + if (lookahead == 'r') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 441: + case 541: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(277); + if (lookahead == 'r') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 442: + case 542: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(286); + if (lookahead == 'r') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 443: + case 543: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(401); + if (lookahead == 'r') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 444: + case 544: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(430); + if (lookahead == 's') ADVANCE(362); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 445: + case 545: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(383); + if (lookahead == 's') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 446: + case 546: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(441); + if (lookahead == 's') ADVANCE(390); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 447: + case 547: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(442); + if (lookahead == 's') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 448: + case 548: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(456); - if (lookahead == 't') ADVANCE(400); + if (lookahead == 's') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 449: + case 549: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 's') ADVANCE(461); + if (lookahead == 's') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 450: + case 550: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(375); + if (lookahead == 's') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 451: + case 551: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(463); + if (lookahead == 's') ADVANCE(546); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 452: + case 552: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(264); + if (lookahead == 's') ADVANCE(560); + if (lookahead == 't') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 453: + case 553: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(255); + if (lookahead == 's') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 454: + case 554: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(274); + if (lookahead == 't') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 455: + case 555: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(283); + if (lookahead == 't') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 456: + case 556: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(239); + if (lookahead == 't') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 457: + case 557: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(400); + if (lookahead == 't') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 458: + case 558: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(396); + if (lookahead == 't') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 459: + case 559: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(436); + if (lookahead == 't') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 460: + case 560: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(402); + if (lookahead == 't') ADVANCE(342); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 461: + case 561: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(437); + if (lookahead == 't') ADVANCE(504); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 462: + case 562: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 't') ADVANCE(404); + if (lookahead == 't') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 463: + case 563: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'u') ADVANCE(435); + if (lookahead == 't') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 464: + case 564: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'u') ADVANCE(378); + if (lookahead == 't') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 465: + case 565: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'u') ADVANCE(381); + if (lookahead == 't') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 466: + case 566: ACCEPT_TOKEN(sym_name_identifier); - if (lookahead == 'y') ADVANCE(431); + if (lookahead == 't') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 467: + case 567: ACCEPT_TOKEN(sym_name_identifier); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(589); + if (lookahead == 'u') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(467); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 468: + case 568: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'u') ADVANCE(482); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 569: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'u') ADVANCE(485); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 570: + ACCEPT_TOKEN(sym_name_identifier); + if (lookahead == 'y') ADVANCE(535); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); + END_STATE(); + case 571: + ACCEPT_TOKEN(sym_name_identifier); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(693); + if (('0' <= lookahead && lookahead <= '9') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(571); + END_STATE(); + case 572: ACCEPT_TOKEN(sym_name_identifier); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(468); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(572); END_STATE(); - case 469: + case 573: ACCEPT_TOKEN(sym_type_identifier); - if (lookahead == '_') ADVANCE(589); + if (lookahead == '_') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(469); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(573); END_STATE(); - case 470: + case 574: ACCEPT_TOKEN(sym_type_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(574); END_STATE(); - case 471: + case 575: ACCEPT_TOKEN(sym_abstract_type_identifier); - if (lookahead == '_') ADVANCE(589); + if (lookahead == '_') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(471); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(575); END_STATE(); - case 472: + case 576: ACCEPT_TOKEN(sym_abstract_type_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(472); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(576); END_STATE(); - case 473: + case 577: ACCEPT_TOKEN(sym_operator); - if (lookahead == '*') ADVANCE(474); - if (lookahead == '/') ADVANCE(353); + if (lookahead == '*') ADVANCE(578); + if (lookahead == '/') ADVANCE(457); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -10115,11 +13751,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(477); + lookahead == '|') ADVANCE(581); END_STATE(); - case 474: + case 578: ACCEPT_TOKEN(sym_operator); - if (lookahead == '*') ADVANCE(475); + if (lookahead == '*') ADVANCE(579); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -10127,12 +13763,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(474); - if (lookahead != 0) ADVANCE(85); + lookahead == '|') ADVANCE(578); + if (lookahead != 0) ADVANCE(160); END_STATE(); - case 475: + case 579: ACCEPT_TOKEN(sym_operator); - if (lookahead == '/') ADVANCE(359); + if (lookahead == '/') ADVANCE(463); if (lookahead == '!' || lookahead == '%' || lookahead == '&' || @@ -10140,904 +13776,904 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ':' || ('<' <= lookahead && lookahead <= '?') || lookahead == '^' || - lookahead == '|') ADVANCE(474); - if (lookahead != 0) ADVANCE(85); - END_STATE(); - case 476: - ACCEPT_TOKEN(sym_operator); - if (lookahead == '>') ADVANCE(297); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - END_STATE(); - case 477: - ACCEPT_TOKEN(sym_operator); - if (lookahead == '!' || - lookahead == '%' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '?') || - lookahead == '^' || - lookahead == '|') ADVANCE(477); - END_STATE(); - case 478: - ACCEPT_TOKEN(sym_float_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); - END_STATE(); - case 479: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '.') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(479); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 480: - ACCEPT_TOKEN(sym_number_literal); - if (lookahead == '.') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(480); - END_STATE(); - case 481: - ACCEPT_TOKEN(sym_number_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(481); - END_STATE(); - case 482: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 483: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '"') ADVANCE(85); - if (lookahead == '*') ADVANCE(484); - if (lookahead == '\\') ADVANCE(1); - if (lookahead != 0) ADVANCE(483); - END_STATE(); - case 484: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '"') ADVANCE(85); - if (lookahead == '/') ADVANCE(358); - if (lookahead == '\\') ADVANCE(1); - if (lookahead != 0) ADVANCE(483); - END_STATE(); - case 485: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '*') ADVANCE(483); - if (lookahead == '/') ADVANCE(350); - if (lookahead == '\\') ADVANCE(195); - if (lookahead != 0 && - lookahead != '"') ADVANCE(487); - END_STATE(); - case 486: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '/') ADVANCE(485); - if (lookahead == '\\') ADVANCE(195); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(486); - if (lookahead != 0 && - lookahead != '"') ADVANCE(487); - END_STATE(); - case 487: - ACCEPT_TOKEN(aux_sym_string_literal_token1); - if (lookahead == '\\') ADVANCE(195); - if (lookahead != 0 && - lookahead != '"') ADVANCE(487); - END_STATE(); - case 488: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 489: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(471); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 490: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(472); - END_STATE(); - case 491: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - END_STATE(); - case 492: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '*') ADVANCE(85); - if (lookahead == '/') ADVANCE(352); - END_STATE(); - case 493: - ACCEPT_TOKEN(aux_sym_char_literal_token1); - if (lookahead == '/') ADVANCE(492); - if (lookahead == '\\') ADVANCE(194); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(493); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(491); - END_STATE(); - case 494: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(543); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 495: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(537); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 496: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(561); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 497: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(575); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 498: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'r') ADVANCE(522); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 499: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(570); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 500: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(558); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 501: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(509); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 502: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(564); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 503: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(511); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 504: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(572); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 505: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(573); - if (lookahead == 'l') ADVANCE(535); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 506: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(281); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 507: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(539); - if (lookahead == 'f') ADVANCE(272); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 508: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(527); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 509: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(518); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 510: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(580); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 511: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(581); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 512: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(507); - if (lookahead == 'o') ADVANCE(318); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 513: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(252); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 514: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(315); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 515: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(260); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 516: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(321); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 517: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(345); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 518: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 519: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(574); - if (lookahead == 'o') ADVANCE(550); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 520: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(545); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 521: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(576); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 522: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(495); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 523: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(569); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 524: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(306); - if (lookahead == 'm') ADVANCE(556); - if (lookahead == 'n') ADVANCE(326); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 525: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'f') ADVANCE(312); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 526: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(303); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 527: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(300); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 528: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(532); - if (lookahead == 'i') ADVANCE(577); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 529: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'h') ADVANCE(520); - if (lookahead == 'y') ADVANCE(554); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 530: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(525); - if (lookahead == 's') ADVANCE(514); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 531: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(506); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 532: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(541); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 533: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(551); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 534: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(548); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 535: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(502); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 536: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(585); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 537: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(342); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 538: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(530); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 539: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 540: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(499); - if (lookahead == 'o') ADVANCE(544); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 541: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(516); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 542: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(504); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 543: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(523); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 544: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(571); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 545: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(309); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 546: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(335); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 547: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(249); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 548: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(588); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 549: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(557); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 550: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(553); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 551: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(547); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 552: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(563); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 553: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(329); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 554: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(515); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 555: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(501); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 556: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(552); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 557: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(324); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 558: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(243); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 559: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(586); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 560: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(546); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 561: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(583); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 562: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(503); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 563: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(579); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 564: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(259); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 565: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(278); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 566: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(287); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 567: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(531); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 568: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(513); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 569: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(555); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 570: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(565); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 571: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(578); - if (lookahead == 't') ADVANCE(534); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 572: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(566); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 573: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(584); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 574: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(265); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 575: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(508); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 576: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(587); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 577: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(526); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 578: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(240); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); - END_STATE(); - case 579: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(256); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + lookahead == '|') ADVANCE(578); + if (lookahead != 0) ADVANCE(160); END_STATE(); case 580: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(275); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(sym_operator); + if (lookahead == '>') ADVANCE(401); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); END_STATE(); case 581: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(284); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(sym_operator); + if (lookahead == '!' || + lookahead == '%' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= '/') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '?') || + lookahead == '^' || + lookahead == '|') ADVANCE(581); END_STATE(); case 582: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(559); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(sym_float_number_literal); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(582); END_STATE(); case 583: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(536); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '.') ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(583); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); case 584: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(562); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(sym_number_literal); + if (lookahead == '.') ADVANCE(264); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(584); END_STATE(); case 585: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(533); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(sym_number_literal); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(585); END_STATE(); case 586: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(510); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); case 587: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(560); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '*') ADVANCE(588); + if (lookahead == '\\') ADVANCE(1); + if (lookahead != 0) ADVANCE(587); END_STATE(); case 588: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(517); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '"') ADVANCE(160); + if (lookahead == '/') ADVANCE(462); + if (lookahead == '\\') ADVANCE(1); + if (lookahead != 0) ADVANCE(587); END_STATE(); case 589: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '*') ADVANCE(587); + if (lookahead == '/') ADVANCE(454); + if (lookahead == '\\') ADVANCE(269); + if (lookahead != 0 && + lookahead != '"') ADVANCE(591); + END_STATE(); + case 590: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '/') ADVANCE(589); + if (lookahead == '\\') ADVANCE(269); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(590); + if (lookahead != 0 && + lookahead != '"') ADVANCE(591); + END_STATE(); + case 591: + ACCEPT_TOKEN(aux_sym_string_literal_token1); + if (lookahead == '\\') ADVANCE(269); + if (lookahead != 0 && + lookahead != '"') ADVANCE(591); + END_STATE(); + case 592: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 593: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(575); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 594: + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(576); + END_STATE(); + case 595: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + END_STATE(); + case 596: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '*') ADVANCE(160); + if (lookahead == '/') ADVANCE(456); + END_STATE(); + case 597: + ACCEPT_TOKEN(aux_sym_char_literal_token1); + if (lookahead == '/') ADVANCE(596); + if (lookahead == '\\') ADVANCE(270); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(597); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(595); + END_STATE(); + case 598: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(647); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 599: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(641); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 600: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(665); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 601: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(679); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 602: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(671); + if (lookahead == 'r') ADVANCE(626); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 603: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 604: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(662); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 605: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(613); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 606: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 607: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(615); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 608: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(676); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 609: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'b') ADVANCE(677); + if (lookahead == 'l') ADVANCE(639); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 610: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(385); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 611: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(643); + if (lookahead == 'f') ADVANCE(376); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 612: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(631); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 613: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(622); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 614: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(684); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 615: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(685); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 616: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(611); + if (lookahead == 'o') ADVANCE(422); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 617: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(356); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 618: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 619: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(364); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 620: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(425); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 621: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(449); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 622: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(340); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 623: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(678); + if (lookahead == 'o') ADVANCE(654); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 624: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(649); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 625: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(680); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 626: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(599); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 627: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(673); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 628: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(410); + if (lookahead == 'm') ADVANCE(660); + if (lookahead == 'n') ADVANCE(430); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 629: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(416); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 630: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(407); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 631: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(404); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 632: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(636); + if (lookahead == 'i') ADVANCE(681); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 633: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(624); + if (lookahead == 'y') ADVANCE(658); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 634: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(629); + if (lookahead == 's') ADVANCE(618); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 635: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(610); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 636: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(645); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 637: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(655); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 638: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(652); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 639: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(606); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 640: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(689); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 641: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(446); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 642: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(634); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 643: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(373); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 644: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(603); + if (lookahead == 'o') ADVANCE(648); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 645: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(620); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 646: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(608); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 647: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(627); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 648: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 649: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(413); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 650: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 651: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(353); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 652: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(692); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 653: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(661); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 654: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(657); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 655: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(651); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 656: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 657: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(433); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 658: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(619); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 659: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(605); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 660: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(656); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 661: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(428); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 662: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(346); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 663: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(690); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 664: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(650); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 665: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(687); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 666: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(607); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 667: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(683); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 668: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(363); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 669: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(382); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 670: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(391); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 671: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(635); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 672: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(617); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 673: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(659); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 674: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 675: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(682); + if (lookahead == 't') ADVANCE(638); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 676: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 677: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(688); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 678: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(369); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 679: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 680: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(691); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 681: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(630); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 682: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(343); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 683: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(360); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 684: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(379); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 685: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(388); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 686: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 687: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(640); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 688: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 689: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(637); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 690: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 691: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(664); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 692: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(621); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); + END_STATE(); + case 693: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(589); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(693); END_STATE(); default: return false; @@ -11050,120 +14686,81 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (lookahead == 'C') ADVANCE(1); - if (lookahead == 'E') ADVANCE(2); - if (lookahead == 'I') ADVANCE(3); - if (lookahead == 'L') ADVANCE(4); - if (lookahead == 'M') ADVANCE(5); - if (lookahead == 'T') ADVANCE(6); - if (lookahead == 'i') ADVANCE(7); + if (lookahead == 'I') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == 'i') ADVANCE(4); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) END_STATE(); case 1: - if (lookahead == 'O') ADVANCE(8); + if (lookahead == 'O') ADVANCE(5); END_STATE(); case 2: - if (lookahead == 'X') ADVANCE(9); + if (lookahead == 'N') ADVANCE(6); END_STATE(); case 3: - if (lookahead == 'N') ADVANCE(10); + if (lookahead == 'E') ADVANCE(7); END_STATE(); case 4: - if (lookahead == 'I') ADVANCE(11); + if (lookahead == 'n') ADVANCE(8); END_STATE(); case 5: - if (lookahead == 'O') ADVANCE(12); + if (lookahead == 'D') ADVANCE(9); END_STATE(); case 6: - if (lookahead == 'E') ADVANCE(13); + if (lookahead == 'T') ADVANCE(10); END_STATE(); case 7: - if (lookahead == 'n') ADVANCE(14); + if (lookahead == 'S') ADVANCE(11); END_STATE(); case 8: - if (lookahead == 'R') ADVANCE(15); + if (lookahead == 'l') ADVANCE(12); END_STATE(); case 9: - if (lookahead == 'E') ADVANCE(16); + if (lookahead == 'E') ADVANCE(13); END_STATE(); case 10: - if (lookahead == 'T') ADVANCE(17); + if (lookahead == 'E') ADVANCE(14); END_STATE(); case 11: - if (lookahead == 'B') ADVANCE(18); + if (lookahead == 'T') ADVANCE(15); END_STATE(); case 12: - if (lookahead == 'D') ADVANCE(19); + if (lookahead == 'i') ADVANCE(16); END_STATE(); case 13: - if (lookahead == 'S') ADVANCE(20); + ACCEPT_TOKEN(anon_sym_CODE); END_STATE(); case 14: - if (lookahead == 'l') ADVANCE(21); + if (lookahead == 'R') ADVANCE(17); END_STATE(); case 15: - if (lookahead == 'E') ADVANCE(22); - END_STATE(); - case 16: - ACCEPT_TOKEN(anon_sym_EXE); - END_STATE(); - case 17: - if (lookahead == 'E') ADVANCE(23); - END_STATE(); - case 18: - ACCEPT_TOKEN(anon_sym_LIB); - END_STATE(); - case 19: - if (lookahead == 'U') ADVANCE(24); - END_STATE(); - case 20: - if (lookahead == 'T') ADVANCE(25); - END_STATE(); - case 21: - if (lookahead == 'i') ADVANCE(26); - END_STATE(); - case 22: - ACCEPT_TOKEN(anon_sym_CORE); - END_STATE(); - case 23: - if (lookahead == 'R') ADVANCE(27); - END_STATE(); - case 24: - if (lookahead == 'L') ADVANCE(28); - END_STATE(); - case 25: ACCEPT_TOKEN(anon_sym_TEST); END_STATE(); - case 26: - if (lookahead == 'n') ADVANCE(29); + case 16: + if (lookahead == 'n') ADVANCE(18); END_STATE(); - case 27: - if (lookahead == 'F') ADVANCE(30); + case 17: + if (lookahead == 'F') ADVANCE(19); END_STATE(); - case 28: - if (lookahead == 'E') ADVANCE(31); + case 18: + if (lookahead == 'e') ADVANCE(20); END_STATE(); - case 29: - if (lookahead == 'e') ADVANCE(32); + case 19: + if (lookahead == 'A') ADVANCE(21); END_STATE(); - case 30: - if (lookahead == 'A') ADVANCE(33); - END_STATE(); - case 31: - ACCEPT_TOKEN(anon_sym_MODULE); - END_STATE(); - case 32: + case 20: ACCEPT_TOKEN(anon_sym_inline); END_STATE(); - case 33: - if (lookahead == 'C') ADVANCE(34); + case 21: + if (lookahead == 'C') ADVANCE(22); END_STATE(); - case 34: - if (lookahead == 'E') ADVANCE(35); + case 22: + if (lookahead == 'E') ADVANCE(23); END_STATE(); - case 35: + case 23: ACCEPT_TOKEN(anon_sym_INTERFACE); END_STATE(); default: @@ -11173,7 +14770,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 216}, + [1] = {.lex_state = 311}, [2] = {.lex_state = 3}, [3] = {.lex_state = 3}, [4] = {.lex_state = 3}, @@ -11339,58 +14936,58 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [164] = {.lex_state = 3}, [165] = {.lex_state = 3}, [166] = {.lex_state = 3}, - [167] = {.lex_state = 3}, - [168] = {.lex_state = 3}, - [169] = {.lex_state = 3}, - [170] = {.lex_state = 3}, - [171] = {.lex_state = 3}, - [172] = {.lex_state = 3}, - [173] = {.lex_state = 3}, - [174] = {.lex_state = 3}, - [175] = {.lex_state = 3}, - [176] = {.lex_state = 3}, - [177] = {.lex_state = 3}, - [178] = {.lex_state = 3}, - [179] = {.lex_state = 3}, - [180] = {.lex_state = 3}, - [181] = {.lex_state = 3}, - [182] = {.lex_state = 3}, - [183] = {.lex_state = 3}, - [184] = {.lex_state = 3}, - [185] = {.lex_state = 3}, - [186] = {.lex_state = 3}, - [187] = {.lex_state = 3}, - [188] = {.lex_state = 3}, - [189] = {.lex_state = 3}, - [190] = {.lex_state = 3}, - [191] = {.lex_state = 3}, - [192] = {.lex_state = 3}, - [193] = {.lex_state = 3}, - [194] = {.lex_state = 3}, - [195] = {.lex_state = 3}, - [196] = {.lex_state = 3}, - [197] = {.lex_state = 3}, - [198] = {.lex_state = 3}, - [199] = {.lex_state = 3}, - [200] = {.lex_state = 3}, - [201] = {.lex_state = 3}, - [202] = {.lex_state = 3}, - [203] = {.lex_state = 3}, - [204] = {.lex_state = 3}, - [205] = {.lex_state = 3}, - [206] = {.lex_state = 3}, - [207] = {.lex_state = 3}, - [208] = {.lex_state = 216}, - [209] = {.lex_state = 216}, - [210] = {.lex_state = 216}, - [211] = {.lex_state = 216}, - [212] = {.lex_state = 216}, - [213] = {.lex_state = 216}, - [214] = {.lex_state = 216}, - [215] = {.lex_state = 216}, - [216] = {.lex_state = 216}, - [217] = {.lex_state = 216}, - [218] = {.lex_state = 216}, + [167] = {.lex_state = 311}, + [168] = {.lex_state = 311}, + [169] = {.lex_state = 311}, + [170] = {.lex_state = 311}, + [171] = {.lex_state = 311}, + [172] = {.lex_state = 311}, + [173] = {.lex_state = 311}, + [174] = {.lex_state = 311}, + [175] = {.lex_state = 311}, + [176] = {.lex_state = 311}, + [177] = {.lex_state = 311}, + [178] = {.lex_state = 273}, + [179] = {.lex_state = 4}, + [180] = {.lex_state = 4}, + [181] = {.lex_state = 293}, + [182] = {.lex_state = 279}, + [183] = {.lex_state = 4}, + [184] = {.lex_state = 275}, + [185] = {.lex_state = 275}, + [186] = {.lex_state = 33}, + [187] = {.lex_state = 274}, + [188] = {.lex_state = 35}, + [189] = {.lex_state = 4}, + [190] = {.lex_state = 4}, + [191] = {.lex_state = 4}, + [192] = {.lex_state = 4}, + [193] = {.lex_state = 4}, + [194] = {.lex_state = 4}, + [195] = {.lex_state = 4}, + [196] = {.lex_state = 4}, + [197] = {.lex_state = 4}, + [198] = {.lex_state = 4}, + [199] = {.lex_state = 4}, + [200] = {.lex_state = 4}, + [201] = {.lex_state = 4}, + [202] = {.lex_state = 4}, + [203] = {.lex_state = 4}, + [204] = {.lex_state = 4}, + [205] = {.lex_state = 4}, + [206] = {.lex_state = 4}, + [207] = {.lex_state = 4}, + [208] = {.lex_state = 4}, + [209] = {.lex_state = 4}, + [210] = {.lex_state = 4}, + [211] = {.lex_state = 4}, + [212] = {.lex_state = 4}, + [213] = {.lex_state = 4}, + [214] = {.lex_state = 4}, + [215] = {.lex_state = 4}, + [216] = {.lex_state = 4}, + [217] = {.lex_state = 4}, + [218] = {.lex_state = 4}, [219] = {.lex_state = 4}, [220] = {.lex_state = 4}, [221] = {.lex_state = 4}, @@ -11407,7 +15004,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [232] = {.lex_state = 4}, [233] = {.lex_state = 4}, [234] = {.lex_state = 4}, - [235] = {.lex_state = 196}, + [235] = {.lex_state = 4}, [236] = {.lex_state = 4}, [237] = {.lex_state = 4}, [238] = {.lex_state = 4}, @@ -11435,31 +15032,31 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [260] = {.lex_state = 4}, [261] = {.lex_state = 4}, [262] = {.lex_state = 4}, - [263] = {.lex_state = 4}, + [263] = {.lex_state = 295}, [264] = {.lex_state = 4}, - [265] = {.lex_state = 4}, + [265] = {.lex_state = 299}, [266] = {.lex_state = 4}, [267] = {.lex_state = 4}, [268] = {.lex_state = 4}, - [269] = {.lex_state = 4}, + [269] = {.lex_state = 109}, [270] = {.lex_state = 4}, - [271] = {.lex_state = 4}, - [272] = {.lex_state = 196}, + [271] = {.lex_state = 294}, + [272] = {.lex_state = 111}, [273] = {.lex_state = 4}, - [274] = {.lex_state = 4}, - [275] = {.lex_state = 196}, - [276] = {.lex_state = 4}, - [277] = {.lex_state = 4}, + [274] = {.lex_state = 281}, + [275] = {.lex_state = 4}, + [276] = {.lex_state = 281}, + [277] = {.lex_state = 61}, [278] = {.lex_state = 4}, [279] = {.lex_state = 4}, [280] = {.lex_state = 4}, [281] = {.lex_state = 4}, [282] = {.lex_state = 4}, [283] = {.lex_state = 4}, - [284] = {.lex_state = 19}, + [284] = {.lex_state = 4}, [285] = {.lex_state = 4}, [286] = {.lex_state = 4}, - [287] = {.lex_state = 19}, + [287] = {.lex_state = 4}, [288] = {.lex_state = 4}, [289] = {.lex_state = 4}, [290] = {.lex_state = 4}, @@ -11471,9 +15068,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [296] = {.lex_state = 4}, [297] = {.lex_state = 4}, [298] = {.lex_state = 4}, - [299] = {.lex_state = 4}, + [299] = {.lex_state = 37}, [300] = {.lex_state = 4}, - [301] = {.lex_state = 4}, + [301] = {.lex_state = 37}, [302] = {.lex_state = 4}, [303] = {.lex_state = 4}, [304] = {.lex_state = 4}, @@ -11489,7 +15086,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [314] = {.lex_state = 4}, [315] = {.lex_state = 4}, [316] = {.lex_state = 4}, - [317] = {.lex_state = 4}, + [317] = {.lex_state = 64}, [318] = {.lex_state = 4}, [319] = {.lex_state = 4}, [320] = {.lex_state = 4}, @@ -11498,37 +15095,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [323] = {.lex_state = 4}, [324] = {.lex_state = 4}, [325] = {.lex_state = 4}, - [326] = {.lex_state = 19}, + [326] = {.lex_state = 4}, [327] = {.lex_state = 4}, - [328] = {.lex_state = 4}, + [328] = {.lex_state = 276}, [329] = {.lex_state = 4}, [330] = {.lex_state = 4}, [331] = {.lex_state = 4}, [332] = {.lex_state = 4}, - [333] = {.lex_state = 198}, + [333] = {.lex_state = 295}, [334] = {.lex_state = 4}, - [335] = {.lex_state = 198}, + [335] = {.lex_state = 4}, [336] = {.lex_state = 4}, - [337] = {.lex_state = 198}, - [338] = {.lex_state = 4}, + [337] = {.lex_state = 4}, + [338] = {.lex_state = 276}, [339] = {.lex_state = 4}, [340] = {.lex_state = 4}, [341] = {.lex_state = 4}, [342] = {.lex_state = 4}, - [343] = {.lex_state = 4}, + [343] = {.lex_state = 280}, [344] = {.lex_state = 4}, [345] = {.lex_state = 4}, - [346] = {.lex_state = 4}, - [347] = {.lex_state = 4}, + [346] = {.lex_state = 39}, + [347] = {.lex_state = 39}, [348] = {.lex_state = 4}, - [349] = {.lex_state = 4}, + [349] = {.lex_state = 34}, [350] = {.lex_state = 4}, [351] = {.lex_state = 4}, [352] = {.lex_state = 4}, [353] = {.lex_state = 4}, [354] = {.lex_state = 4}, [355] = {.lex_state = 4}, - [356] = {.lex_state = 4}, + [356] = {.lex_state = 36}, [357] = {.lex_state = 4}, [358] = {.lex_state = 4}, [359] = {.lex_state = 4}, @@ -11538,12 +15135,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [363] = {.lex_state = 4}, [364] = {.lex_state = 4}, [365] = {.lex_state = 4}, - [366] = {.lex_state = 197}, + [366] = {.lex_state = 4}, [367] = {.lex_state = 4}, [368] = {.lex_state = 4}, - [369] = {.lex_state = 197}, + [369] = {.lex_state = 4}, [370] = {.lex_state = 4}, - [371] = {.lex_state = 197}, + [371] = {.lex_state = 4}, [372] = {.lex_state = 4}, [373] = {.lex_state = 4}, [374] = {.lex_state = 4}, @@ -11555,10 +15152,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [380] = {.lex_state = 4}, [381] = {.lex_state = 4}, [382] = {.lex_state = 4}, - [383] = {.lex_state = 21}, + [383] = {.lex_state = 4}, [384] = {.lex_state = 4}, [385] = {.lex_state = 4}, - [386] = {.lex_state = 21}, + [386] = {.lex_state = 4}, [387] = {.lex_state = 4}, [388] = {.lex_state = 4}, [389] = {.lex_state = 4}, @@ -11570,7 +15167,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 4}, [396] = {.lex_state = 4}, [397] = {.lex_state = 4}, - [398] = {.lex_state = 21}, + [398] = {.lex_state = 4}, [399] = {.lex_state = 4}, [400] = {.lex_state = 4}, [401] = {.lex_state = 4}, @@ -11608,11 +15205,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [433] = {.lex_state = 4}, [434] = {.lex_state = 4}, [435] = {.lex_state = 4}, - [436] = {.lex_state = 206}, + [436] = {.lex_state = 4}, [437] = {.lex_state = 4}, - [438] = {.lex_state = 206}, + [438] = {.lex_state = 4}, [439] = {.lex_state = 4}, - [440] = {.lex_state = 206}, + [440] = {.lex_state = 4}, [441] = {.lex_state = 4}, [442] = {.lex_state = 4}, [443] = {.lex_state = 4}, @@ -11659,917 +15256,917 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 4}, [485] = {.lex_state = 4}, [486] = {.lex_state = 4}, - [487] = {.lex_state = 4}, - [488] = {.lex_state = 4}, - [489] = {.lex_state = 4}, - [490] = {.lex_state = 4}, - [491] = {.lex_state = 4}, - [492] = {.lex_state = 4}, - [493] = {.lex_state = 4}, - [494] = {.lex_state = 4}, - [495] = {.lex_state = 4}, - [496] = {.lex_state = 4}, - [497] = {.lex_state = 4}, - [498] = {.lex_state = 4}, - [499] = {.lex_state = 4}, - [500] = {.lex_state = 4}, - [501] = {.lex_state = 4}, - [502] = {.lex_state = 4}, - [503] = {.lex_state = 4}, - [504] = {.lex_state = 4}, - [505] = {.lex_state = 4}, - [506] = {.lex_state = 4}, - [507] = {.lex_state = 4}, - [508] = {.lex_state = 4}, - [509] = {.lex_state = 4}, - [510] = {.lex_state = 4}, - [511] = {.lex_state = 4}, - [512] = {.lex_state = 59}, - [513] = {.lex_state = 207}, - [514] = {.lex_state = 33}, - [515] = {.lex_state = 33}, - [516] = {.lex_state = 33}, - [517] = {.lex_state = 214}, - [518] = {.lex_state = 20}, - [519] = {.lex_state = 214}, - [520] = {.lex_state = 20}, - [521] = {.lex_state = 214}, - [522] = {.lex_state = 20}, - [523] = {.lex_state = 36}, - [524] = {.lex_state = 207}, - [525] = {.lex_state = 36}, - [526] = {.lex_state = 57}, - [527] = {.lex_state = 36}, - [528] = {.lex_state = 207}, - [529] = {.lex_state = 57}, - [530] = {.lex_state = 57}, - [531] = {.lex_state = 204}, - [532] = {.lex_state = 204}, - [533] = {.lex_state = 204}, - [534] = {.lex_state = 22}, - [535] = {.lex_state = 22}, - [536] = {.lex_state = 59}, - [537] = {.lex_state = 22}, - [538] = {.lex_state = 59}, - [539] = {.lex_state = 58}, - [540] = {.lex_state = 60}, - [541] = {.lex_state = 37}, - [542] = {.lex_state = 208}, - [543] = {.lex_state = 37}, - [544] = {.lex_state = 205}, - [545] = {.lex_state = 37}, - [546] = {.lex_state = 71}, - [547] = {.lex_state = 71}, - [548] = {.lex_state = 71}, - [549] = {.lex_state = 205}, - [550] = {.lex_state = 208}, - [551] = {.lex_state = 58}, - [552] = {.lex_state = 205}, - [553] = {.lex_state = 34}, - [554] = {.lex_state = 34}, - [555] = {.lex_state = 208}, - [556] = {.lex_state = 34}, - [557] = {.lex_state = 74}, - [558] = {.lex_state = 74}, - [559] = {.lex_state = 58}, - [560] = {.lex_state = 74}, - [561] = {.lex_state = 60}, - [562] = {.lex_state = 60}, - [563] = {.lex_state = 35}, - [564] = {.lex_state = 72}, - [565] = {.lex_state = 215}, - [566] = {.lex_state = 38}, - [567] = {.lex_state = 38}, - [568] = {.lex_state = 38}, - [569] = {.lex_state = 75}, - [570] = {.lex_state = 75}, - [571] = {.lex_state = 72}, - [572] = {.lex_state = 75}, - [573] = {.lex_state = 72}, - [574] = {.lex_state = 215}, - [575] = {.lex_state = 35}, - [576] = {.lex_state = 35}, - [577] = {.lex_state = 215}, - [578] = {.lex_state = 73}, - [579] = {.lex_state = 76}, - [580] = {.lex_state = 76}, - [581] = {.lex_state = 73}, - [582] = {.lex_state = 73}, - [583] = {.lex_state = 76}, - [584] = {.lex_state = 216}, - [585] = {.lex_state = 216}, - [586] = {.lex_state = 216}, - [587] = {.lex_state = 216}, - [588] = {.lex_state = 216}, - [589] = {.lex_state = 216}, - [590] = {.lex_state = 216}, - [591] = {.lex_state = 216}, - [592] = {.lex_state = 216}, - [593] = {.lex_state = 216}, - [594] = {.lex_state = 223}, - [595] = {.lex_state = 216}, - [596] = {.lex_state = 224}, - [597] = {.lex_state = 224}, - [598] = {.lex_state = 230}, - [599] = {.lex_state = 224}, - [600] = {.lex_state = 224}, - [601] = {.lex_state = 224}, - [602] = {.lex_state = 224}, - [603] = {.lex_state = 224}, - [604] = {.lex_state = 224}, - [605] = {.lex_state = 232}, - [606] = {.lex_state = 219}, - [607] = {.lex_state = 232}, - [608] = {.lex_state = 232}, - [609] = {.lex_state = 232}, - [610] = {.lex_state = 232}, - [611] = {.lex_state = 232}, - [612] = {.lex_state = 232}, - [613] = {.lex_state = 232}, - [614] = {.lex_state = 221}, - [615] = {.lex_state = 221}, - [616] = {.lex_state = 221}, - [617] = {.lex_state = 220}, - [618] = {.lex_state = 221}, - [619] = {.lex_state = 221}, - [620] = {.lex_state = 221}, - [621] = {.lex_state = 221}, - [622] = {.lex_state = 226}, - [623] = {.lex_state = 221}, - [624] = {.lex_state = 222}, - [625] = {.lex_state = 228}, - [626] = {.lex_state = 228}, - [627] = {.lex_state = 222}, - [628] = {.lex_state = 222}, - [629] = {.lex_state = 218}, - [630] = {.lex_state = 222}, - [631] = {.lex_state = 222}, - [632] = {.lex_state = 227}, - [633] = {.lex_state = 228}, - [634] = {.lex_state = 228}, - [635] = {.lex_state = 228}, - [636] = {.lex_state = 228}, - [637] = {.lex_state = 222}, - [638] = {.lex_state = 222}, - [639] = {.lex_state = 222}, - [640] = {.lex_state = 228}, - [641] = {.lex_state = 228}, - [642] = {.lex_state = 225}, - [643] = {.lex_state = 225}, - [644] = {.lex_state = 225}, - [645] = {.lex_state = 225}, - [646] = {.lex_state = 225}, - [647] = {.lex_state = 229}, - [648] = {.lex_state = 225}, - [649] = {.lex_state = 229}, - [650] = {.lex_state = 229}, - [651] = {.lex_state = 225}, - [652] = {.lex_state = 225}, - [653] = {.lex_state = 229}, - [654] = {.lex_state = 231}, - [655] = {.lex_state = 229}, - [656] = {.lex_state = 229}, - [657] = {.lex_state = 229}, - [658] = {.lex_state = 229}, - [659] = {.lex_state = 233}, - [660] = {.lex_state = 233}, - [661] = {.lex_state = 233}, - [662] = {.lex_state = 233}, - [663] = {.lex_state = 233}, - [664] = {.lex_state = 233}, - [665] = {.lex_state = 216}, - [666] = {.lex_state = 233}, - [667] = {.lex_state = 233}, - [668] = {.lex_state = 199}, - [669] = {.lex_state = 199}, - [670] = {.lex_state = 199}, - [671] = {.lex_state = 199}, - [672] = {.lex_state = 199}, - [673] = {.lex_state = 199}, - [674] = {.lex_state = 199}, - [675] = {.lex_state = 199}, - [676] = {.lex_state = 199}, - [677] = {.lex_state = 199}, - [678] = {.lex_state = 199}, - [679] = {.lex_state = 199}, - [680] = {.lex_state = 199}, - [681] = {.lex_state = 216}, - [682] = {.lex_state = 199}, - [683] = {.lex_state = 199}, - [684] = {.lex_state = 199}, - [685] = {.lex_state = 216}, - [686] = {.lex_state = 201}, - [687] = {.lex_state = 201}, - [688] = {.lex_state = 201}, - [689] = {.lex_state = 201}, - [690] = {.lex_state = 15}, - [691] = {.lex_state = 201}, - [692] = {.lex_state = 7}, - [693] = {.lex_state = 15}, - [694] = {.lex_state = 7}, - [695] = {.lex_state = 15}, - [696] = {.lex_state = 15}, - [697] = {.lex_state = 209}, - [698] = {.lex_state = 15}, - [699] = {.lex_state = 7}, - [700] = {.lex_state = 15}, - [701] = {.lex_state = 15}, - [702] = {.lex_state = 15}, - [703] = {.lex_state = 15}, - [704] = {.lex_state = 200}, - [705] = {.lex_state = 200}, - [706] = {.lex_state = 200}, - [707] = {.lex_state = 200}, - [708] = {.lex_state = 200}, - [709] = {.lex_state = 200}, - [710] = {.lex_state = 200}, - [711] = {.lex_state = 200}, - [712] = {.lex_state = 200}, - [713] = {.lex_state = 200}, - [714] = {.lex_state = 200}, - [715] = {.lex_state = 15}, - [716] = {.lex_state = 15}, - [717] = {.lex_state = 200}, - [718] = {.lex_state = 200}, - [719] = {.lex_state = 200}, - [720] = {.lex_state = 200}, - [721] = {.lex_state = 216}, - [722] = {.lex_state = 196}, - [723] = {.lex_state = 17}, - [724] = {.lex_state = 17}, - [725] = {.lex_state = 17}, - [726] = {.lex_state = 17}, - [727] = {.lex_state = 201}, - [728] = {.lex_state = 201}, - [729] = {.lex_state = 201}, - [730] = {.lex_state = 17}, - [731] = {.lex_state = 201}, - [732] = {.lex_state = 17}, - [733] = {.lex_state = 201}, - [734] = {.lex_state = 201}, - [735] = {.lex_state = 17}, - [736] = {.lex_state = 17}, - [737] = {.lex_state = 17}, - [738] = {.lex_state = 17}, - [739] = {.lex_state = 15}, - [740] = {.lex_state = 17}, - [741] = {.lex_state = 17}, - [742] = {.lex_state = 17}, - [743] = {.lex_state = 15}, - [744] = {.lex_state = 17}, - [745] = {.lex_state = 17}, - [746] = {.lex_state = 17}, - [747] = {.lex_state = 201}, - [748] = {.lex_state = 216}, - [749] = {.lex_state = 209}, - [750] = {.lex_state = 216}, - [751] = {.lex_state = 201}, - [752] = {.lex_state = 201}, - [753] = {.lex_state = 201}, - [754] = {.lex_state = 201}, - [755] = {.lex_state = 196}, - [756] = {.lex_state = 216}, - [757] = {.lex_state = 216}, - [758] = {.lex_state = 216}, - [759] = {.lex_state = 216}, - [760] = {.lex_state = 216}, - [761] = {.lex_state = 209}, - [762] = {.lex_state = 209}, - [763] = {.lex_state = 209}, - [764] = {.lex_state = 15}, - [765] = {.lex_state = 209}, - [766] = {.lex_state = 209}, - [767] = {.lex_state = 15}, - [768] = {.lex_state = 209}, - [769] = {.lex_state = 209}, - [770] = {.lex_state = 209}, - [771] = {.lex_state = 209}, - [772] = {.lex_state = 209}, - [773] = {.lex_state = 209}, - [774] = {.lex_state = 209}, - [775] = {.lex_state = 209}, - [776] = {.lex_state = 209}, - [777] = {.lex_state = 15}, - [778] = {.lex_state = 200}, - [779] = {.lex_state = 26}, - [780] = {.lex_state = 202}, - [781] = {.lex_state = 12}, - [782] = {.lex_state = 18}, - [783] = {.lex_state = 19}, - [784] = {.lex_state = 12}, - [785] = {.lex_state = 18}, - [786] = {.lex_state = 12}, - [787] = {.lex_state = 23}, - [788] = {.lex_state = 211}, - [789] = {.lex_state = 13}, - [790] = {.lex_state = 23}, - [791] = {.lex_state = 23}, - [792] = {.lex_state = 18}, - [793] = {.lex_state = 18}, - [794] = {.lex_state = 23}, - [795] = {.lex_state = 13}, - [796] = {.lex_state = 23}, - [797] = {.lex_state = 13}, - [798] = {.lex_state = 23}, - [799] = {.lex_state = 18}, - [800] = {.lex_state = 206}, - [801] = {.lex_state = 23}, - [802] = {.lex_state = 23}, - [803] = {.lex_state = 23}, - [804] = {.lex_state = 23}, - [805] = {.lex_state = 23}, - [806] = {.lex_state = 197}, - [807] = {.lex_state = 18}, - [808] = {.lex_state = 55}, - [809] = {.lex_state = 23}, - [810] = {.lex_state = 18}, - [811] = {.lex_state = 23}, - [812] = {.lex_state = 23}, - [813] = {.lex_state = 23}, - [814] = {.lex_state = 198}, - [815] = {.lex_state = 211}, - [816] = {.lex_state = 18}, - [817] = {.lex_state = 198}, - [818] = {.lex_state = 18}, - [819] = {.lex_state = 211}, - [820] = {.lex_state = 18}, - [821] = {.lex_state = 18}, - [822] = {.lex_state = 211}, - [823] = {.lex_state = 211}, - [824] = {.lex_state = 26}, - [825] = {.lex_state = 26}, - [826] = {.lex_state = 26}, - [827] = {.lex_state = 18}, - [828] = {.lex_state = 55}, - [829] = {.lex_state = 55}, - [830] = {.lex_state = 18}, - [831] = {.lex_state = 210}, - [832] = {.lex_state = 55}, - [833] = {.lex_state = 18}, - [834] = {.lex_state = 55}, - [835] = {.lex_state = 18}, - [836] = {.lex_state = 55}, - [837] = {.lex_state = 55}, - [838] = {.lex_state = 55}, - [839] = {.lex_state = 55}, - [840] = {.lex_state = 55}, - [841] = {.lex_state = 55}, - [842] = {.lex_state = 211}, - [843] = {.lex_state = 55}, - [844] = {.lex_state = 26}, - [845] = {.lex_state = 26}, - [846] = {.lex_state = 8}, - [847] = {.lex_state = 55}, - [848] = {.lex_state = 55}, - [849] = {.lex_state = 55}, - [850] = {.lex_state = 26}, - [851] = {.lex_state = 55}, - [852] = {.lex_state = 26}, - [853] = {.lex_state = 8}, - [854] = {.lex_state = 26}, - [855] = {.lex_state = 8}, - [856] = {.lex_state = 26}, - [857] = {.lex_state = 26}, - [858] = {.lex_state = 26}, - [859] = {.lex_state = 197}, - [860] = {.lex_state = 53}, - [861] = {.lex_state = 211}, - [862] = {.lex_state = 211}, - [863] = {.lex_state = 53}, - [864] = {.lex_state = 211}, - [865] = {.lex_state = 53}, - [866] = {.lex_state = 53}, - [867] = {.lex_state = 26}, - [868] = {.lex_state = 26}, - [869] = {.lex_state = 16}, - [870] = {.lex_state = 23}, - [871] = {.lex_state = 26}, - [872] = {.lex_state = 53}, - [873] = {.lex_state = 211}, - [874] = {.lex_state = 53}, - [875] = {.lex_state = 53}, - [876] = {.lex_state = 53}, - [877] = {.lex_state = 53}, - [878] = {.lex_state = 53}, - [879] = {.lex_state = 206}, - [880] = {.lex_state = 45}, - [881] = {.lex_state = 16}, - [882] = {.lex_state = 53}, - [883] = {.lex_state = 16}, - [884] = {.lex_state = 16}, + [487] = {.lex_state = 113}, + [488] = {.lex_state = 74}, + [489] = {.lex_state = 74}, + [490] = {.lex_state = 71}, + [491] = {.lex_state = 137}, + [492] = {.lex_state = 71}, + [493] = {.lex_state = 289}, + [494] = {.lex_state = 289}, + [495] = {.lex_state = 288}, + [496] = {.lex_state = 38}, + [497] = {.lex_state = 38}, + [498] = {.lex_state = 62}, + [499] = {.lex_state = 112}, + [500] = {.lex_state = 110}, + [501] = {.lex_state = 115}, + [502] = {.lex_state = 115}, + [503] = {.lex_state = 300}, + [504] = {.lex_state = 296}, + [505] = {.lex_state = 296}, + [506] = {.lex_state = 40}, + [507] = {.lex_state = 40}, + [508] = {.lex_state = 65}, + [509] = {.lex_state = 140}, + [510] = {.lex_state = 309}, + [511] = {.lex_state = 113}, + [512] = {.lex_state = 309}, + [513] = {.lex_state = 116}, + [514] = {.lex_state = 150}, + [515] = {.lex_state = 147}, + [516] = {.lex_state = 66}, + [517] = {.lex_state = 147}, + [518] = {.lex_state = 301}, + [519] = {.lex_state = 141}, + [520] = {.lex_state = 116}, + [521] = {.lex_state = 301}, + [522] = {.lex_state = 72}, + [523] = {.lex_state = 290}, + [524] = {.lex_state = 63}, + [525] = {.lex_state = 72}, + [526] = {.lex_state = 114}, + [527] = {.lex_state = 114}, + [528] = {.lex_state = 138}, + [529] = {.lex_state = 150}, + [530] = {.lex_state = 75}, + [531] = {.lex_state = 75}, + [532] = {.lex_state = 290}, + [533] = {.lex_state = 308}, + [534] = {.lex_state = 76}, + [535] = {.lex_state = 151}, + [536] = {.lex_state = 151}, + [537] = {.lex_state = 148}, + [538] = {.lex_state = 148}, + [539] = {.lex_state = 139}, + [540] = {.lex_state = 73}, + [541] = {.lex_state = 310}, + [542] = {.lex_state = 76}, + [543] = {.lex_state = 142}, + [544] = {.lex_state = 73}, + [545] = {.lex_state = 310}, + [546] = {.lex_state = 152}, + [547] = {.lex_state = 149}, + [548] = {.lex_state = 152}, + [549] = {.lex_state = 149}, + [550] = {.lex_state = 311}, + [551] = {.lex_state = 311}, + [552] = {.lex_state = 311}, + [553] = {.lex_state = 315}, + [554] = {.lex_state = 315}, + [555] = {.lex_state = 311}, + [556] = {.lex_state = 311}, + [557] = {.lex_state = 311}, + [558] = {.lex_state = 315}, + [559] = {.lex_state = 311}, + [560] = {.lex_state = 315}, + [561] = {.lex_state = 311}, + [562] = {.lex_state = 311}, + [563] = {.lex_state = 311}, + [564] = {.lex_state = 315}, + [565] = {.lex_state = 311}, + [566] = {.lex_state = 315}, + [567] = {.lex_state = 317}, + [568] = {.lex_state = 317}, + [569] = {.lex_state = 317}, + [570] = {.lex_state = 317}, + [571] = {.lex_state = 317}, + [572] = {.lex_state = 317}, + [573] = {.lex_state = 317}, + [574] = {.lex_state = 317}, + [575] = {.lex_state = 317}, + [576] = {.lex_state = 317}, + [577] = {.lex_state = 317}, + [578] = {.lex_state = 317}, + [579] = {.lex_state = 316}, + [580] = {.lex_state = 329}, + [581] = {.lex_state = 319}, + [582] = {.lex_state = 329}, + [583] = {.lex_state = 327}, + [584] = {.lex_state = 319}, + [585] = {.lex_state = 329}, + [586] = {.lex_state = 327}, + [587] = {.lex_state = 329}, + [588] = {.lex_state = 327}, + [589] = {.lex_state = 319}, + [590] = {.lex_state = 319}, + [591] = {.lex_state = 327}, + [592] = {.lex_state = 329}, + [593] = {.lex_state = 329}, + [594] = {.lex_state = 329}, + [595] = {.lex_state = 319}, + [596] = {.lex_state = 329}, + [597] = {.lex_state = 329}, + [598] = {.lex_state = 329}, + [599] = {.lex_state = 327}, + [600] = {.lex_state = 327}, + [601] = {.lex_state = 329}, + [602] = {.lex_state = 329}, + [603] = {.lex_state = 319}, + [604] = {.lex_state = 313}, + [605] = {.lex_state = 313}, + [606] = {.lex_state = 313}, + [607] = {.lex_state = 331}, + [608] = {.lex_state = 320}, + [609] = {.lex_state = 331}, + [610] = {.lex_state = 331}, + [611] = {.lex_state = 331}, + [612] = {.lex_state = 328}, + [613] = {.lex_state = 331}, + [614] = {.lex_state = 313}, + [615] = {.lex_state = 331}, + [616] = {.lex_state = 321}, + [617] = {.lex_state = 320}, + [618] = {.lex_state = 313}, + [619] = {.lex_state = 313}, + [620] = {.lex_state = 313}, + [621] = {.lex_state = 313}, + [622] = {.lex_state = 313}, + [623] = {.lex_state = 313}, + [624] = {.lex_state = 320}, + [625] = {.lex_state = 320}, + [626] = {.lex_state = 313}, + [627] = {.lex_state = 320}, + [628] = {.lex_state = 320}, + [629] = {.lex_state = 313}, + [630] = {.lex_state = 314}, + [631] = {.lex_state = 322}, + [632] = {.lex_state = 323}, + [633] = {.lex_state = 332}, + [634] = {.lex_state = 314}, + [635] = {.lex_state = 333}, + [636] = {.lex_state = 314}, + [637] = {.lex_state = 323}, + [638] = {.lex_state = 323}, + [639] = {.lex_state = 323}, + [640] = {.lex_state = 323}, + [641] = {.lex_state = 323}, + [642] = {.lex_state = 314}, + [643] = {.lex_state = 314}, + [644] = {.lex_state = 314}, + [645] = {.lex_state = 314}, + [646] = {.lex_state = 314}, + [647] = {.lex_state = 314}, + [648] = {.lex_state = 314}, + [649] = {.lex_state = 325}, + [650] = {.lex_state = 314}, + [651] = {.lex_state = 314}, + [652] = {.lex_state = 325}, + [653] = {.lex_state = 325}, + [654] = {.lex_state = 325}, + [655] = {.lex_state = 332}, + [656] = {.lex_state = 325}, + [657] = {.lex_state = 325}, + [658] = {.lex_state = 325}, + [659] = {.lex_state = 325}, + [660] = {.lex_state = 332}, + [661] = {.lex_state = 325}, + [662] = {.lex_state = 325}, + [663] = {.lex_state = 325}, + [664] = {.lex_state = 332}, + [665] = {.lex_state = 325}, + [666] = {.lex_state = 332}, + [667] = {.lex_state = 332}, + [668] = {.lex_state = 318}, + [669] = {.lex_state = 318}, + [670] = {.lex_state = 318}, + [671] = {.lex_state = 318}, + [672] = {.lex_state = 318}, + [673] = {.lex_state = 318}, + [674] = {.lex_state = 318}, + [675] = {.lex_state = 318}, + [676] = {.lex_state = 324}, + [677] = {.lex_state = 318}, + [678] = {.lex_state = 318}, + [679] = {.lex_state = 318}, + [680] = {.lex_state = 318}, + [681] = {.lex_state = 271}, + [682] = {.lex_state = 271}, + [683] = {.lex_state = 335}, + [684] = {.lex_state = 271}, + [685] = {.lex_state = 271}, + [686] = {.lex_state = 271}, + [687] = {.lex_state = 326}, + [688] = {.lex_state = 326}, + [689] = {.lex_state = 326}, + [690] = {.lex_state = 335}, + [691] = {.lex_state = 326}, + [692] = {.lex_state = 334}, + [693] = {.lex_state = 326}, + [694] = {.lex_state = 271}, + [695] = {.lex_state = 326}, + [696] = {.lex_state = 335}, + [697] = {.lex_state = 335}, + [698] = {.lex_state = 335}, + [699] = {.lex_state = 326}, + [700] = {.lex_state = 326}, + [701] = {.lex_state = 326}, + [702] = {.lex_state = 326}, + [703] = {.lex_state = 326}, + [704] = {.lex_state = 326}, + [705] = {.lex_state = 335}, + [706] = {.lex_state = 330}, + [707] = {.lex_state = 330}, + [708] = {.lex_state = 330}, + [709] = {.lex_state = 330}, + [710] = {.lex_state = 330}, + [711] = {.lex_state = 330}, + [712] = {.lex_state = 330}, + [713] = {.lex_state = 330}, + [714] = {.lex_state = 272}, + [715] = {.lex_state = 272}, + [716] = {.lex_state = 272}, + [717] = {.lex_state = 291}, + [718] = {.lex_state = 272}, + [719] = {.lex_state = 291}, + [720] = {.lex_state = 272}, + [721] = {.lex_state = 330}, + [722] = {.lex_state = 330}, + [723] = {.lex_state = 272}, + [724] = {.lex_state = 291}, + [725] = {.lex_state = 291}, + [726] = {.lex_state = 277}, + [727] = {.lex_state = 291}, + [728] = {.lex_state = 330}, + [729] = {.lex_state = 330}, + [730] = {.lex_state = 277}, + [731] = {.lex_state = 277}, + [732] = {.lex_state = 311}, + [733] = {.lex_state = 291}, + [734] = {.lex_state = 277}, + [735] = {.lex_state = 277}, + [736] = {.lex_state = 336}, + [737] = {.lex_state = 277}, + [738] = {.lex_state = 25}, + [739] = {.lex_state = 284}, + [740] = {.lex_state = 25}, + [741] = {.lex_state = 25}, + [742] = {.lex_state = 282}, + [743] = {.lex_state = 25}, + [744] = {.lex_state = 25}, + [745] = {.lex_state = 25}, + [746] = {.lex_state = 297}, + [747] = {.lex_state = 297}, + [748] = {.lex_state = 311}, + [749] = {.lex_state = 273}, + [750] = {.lex_state = 292}, + [751] = {.lex_state = 297}, + [752] = {.lex_state = 311}, + [753] = {.lex_state = 292}, + [754] = {.lex_state = 297}, + [755] = {.lex_state = 284}, + [756] = {.lex_state = 9}, + [757] = {.lex_state = 292}, + [758] = {.lex_state = 284}, + [759] = {.lex_state = 297}, + [760] = {.lex_state = 297}, + [761] = {.lex_state = 292}, + [762] = {.lex_state = 292}, + [763] = {.lex_state = 284}, + [764] = {.lex_state = 282}, + [765] = {.lex_state = 284}, + [766] = {.lex_state = 282}, + [767] = {.lex_state = 292}, + [768] = {.lex_state = 278}, + [769] = {.lex_state = 284}, + [770] = {.lex_state = 278}, + [771] = {.lex_state = 278}, + [772] = {.lex_state = 278}, + [773] = {.lex_state = 278}, + [774] = {.lex_state = 278}, + [775] = {.lex_state = 27}, + [776] = {.lex_state = 27}, + [777] = {.lex_state = 27}, + [778] = {.lex_state = 27}, + [779] = {.lex_state = 27}, + [780] = {.lex_state = 27}, + [781] = {.lex_state = 85}, + [782] = {.lex_state = 275}, + [783] = {.lex_state = 302}, + [784] = {.lex_state = 26}, + [785] = {.lex_state = 285}, + [786] = {.lex_state = 285}, + [787] = {.lex_state = 103}, + [788] = {.lex_state = 103}, + [789] = {.lex_state = 311}, + [790] = {.lex_state = 285}, + [791] = {.lex_state = 103}, + [792] = {.lex_state = 103}, + [793] = {.lex_state = 103}, + [794] = {.lex_state = 35}, + [795] = {.lex_state = 103}, + [796] = {.lex_state = 311}, + [797] = {.lex_state = 311}, + [798] = {.lex_state = 28}, + [799] = {.lex_state = 311}, + [800] = {.lex_state = 26}, + [801] = {.lex_state = 26}, + [802] = {.lex_state = 311}, + [803] = {.lex_state = 20}, + [804] = {.lex_state = 26}, + [805] = {.lex_state = 26}, + [806] = {.lex_state = 275}, + [807] = {.lex_state = 304}, + [808] = {.lex_state = 311}, + [809] = {.lex_state = 304}, + [810] = {.lex_state = 26}, + [811] = {.lex_state = 302}, + [812] = {.lex_state = 298}, + [813] = {.lex_state = 293}, + [814] = {.lex_state = 298}, + [815] = {.lex_state = 279}, + [816] = {.lex_state = 29}, + [817] = {.lex_state = 304}, + [818] = {.lex_state = 274}, + [819] = {.lex_state = 304}, + [820] = {.lex_state = 304}, + [821] = {.lex_state = 298}, + [822] = {.lex_state = 298}, + [823] = {.lex_state = 29}, + [824] = {.lex_state = 298}, + [825] = {.lex_state = 302}, + [826] = {.lex_state = 298}, + [827] = {.lex_state = 304}, + [828] = {.lex_state = 11}, + [829] = {.lex_state = 29}, + [830] = {.lex_state = 11}, + [831] = {.lex_state = 28}, + [832] = {.lex_state = 19}, + [833] = {.lex_state = 41}, + [834] = {.lex_state = 41}, + [835] = {.lex_state = 41}, + [836] = {.lex_state = 41}, + [837] = {.lex_state = 44}, + [838] = {.lex_state = 41}, + [839] = {.lex_state = 41}, + [840] = {.lex_state = 283}, + [841] = {.lex_state = 101}, + [842] = {.lex_state = 283}, + [843] = {.lex_state = 10}, + [844] = {.lex_state = 44}, + [845] = {.lex_state = 44}, + [846] = {.lex_state = 311}, + [847] = {.lex_state = 44}, + [848] = {.lex_state = 311}, + [849] = {.lex_state = 44}, + [850] = {.lex_state = 44}, + [851] = {.lex_state = 283}, + [852] = {.lex_state = 101}, + [853] = {.lex_state = 101}, + [854] = {.lex_state = 31}, + [855] = {.lex_state = 101}, + [856] = {.lex_state = 31}, + [857] = {.lex_state = 33}, + [858] = {.lex_state = 101}, + [859] = {.lex_state = 28}, + [860] = {.lex_state = 275}, + [861] = {.lex_state = 31}, + [862] = {.lex_state = 275}, + [863] = {.lex_state = 28}, + [864] = {.lex_state = 28}, + [865] = {.lex_state = 28}, + [866] = {.lex_state = 275}, + [867] = {.lex_state = 275}, + [868] = {.lex_state = 275}, + [869] = {.lex_state = 101}, + [870] = {.lex_state = 45}, + [871] = {.lex_state = 120}, + [872] = {.lex_state = 37}, + [873] = {.lex_state = 30}, + [874] = {.lex_state = 305}, + [875] = {.lex_state = 37}, + [876] = {.lex_state = 37}, + [877] = {.lex_state = 286}, + [878] = {.lex_state = 45}, + [879] = {.lex_state = 39}, + [880] = {.lex_state = 109}, + [881] = {.lex_state = 45}, + [882] = {.lex_state = 286}, + [883] = {.lex_state = 45}, + [884] = {.lex_state = 117}, [885] = {.lex_state = 45}, - [886] = {.lex_state = 26}, - [887] = {.lex_state = 211}, - [888] = {.lex_state = 53}, - [889] = {.lex_state = 53}, - [890] = {.lex_state = 202}, - [891] = {.lex_state = 53}, - [892] = {.lex_state = 45}, - [893] = {.lex_state = 211}, - [894] = {.lex_state = 53}, - [895] = {.lex_state = 202}, - [896] = {.lex_state = 16}, - [897] = {.lex_state = 202}, - [898] = {.lex_state = 202}, - [899] = {.lex_state = 16}, - [900] = {.lex_state = 16}, - [901] = {.lex_state = 202}, - [902] = {.lex_state = 211}, - [903] = {.lex_state = 16}, - [904] = {.lex_state = 16}, - [905] = {.lex_state = 202}, - [906] = {.lex_state = 211}, - [907] = {.lex_state = 202}, - [908] = {.lex_state = 202}, - [909] = {.lex_state = 16}, - [910] = {.lex_state = 21}, - [911] = {.lex_state = 16}, - [912] = {.lex_state = 202}, - [913] = {.lex_state = 202}, - [914] = {.lex_state = 211}, - [915] = {.lex_state = 210}, - [916] = {.lex_state = 210}, - [917] = {.lex_state = 202}, - [918] = {.lex_state = 210}, - [919] = {.lex_state = 210}, - [920] = {.lex_state = 21}, - [921] = {.lex_state = 211}, - [922] = {.lex_state = 16}, - [923] = {.lex_state = 210}, - [924] = {.lex_state = 202}, - [925] = {.lex_state = 16}, - [926] = {.lex_state = 16}, - [927] = {.lex_state = 202}, - [928] = {.lex_state = 16}, - [929] = {.lex_state = 210}, - [930] = {.lex_state = 210}, - [931] = {.lex_state = 210}, - [932] = {.lex_state = 210}, - [933] = {.lex_state = 210}, - [934] = {.lex_state = 16}, - [935] = {.lex_state = 18}, - [936] = {.lex_state = 202}, - [937] = {.lex_state = 19}, - [938] = {.lex_state = 210}, - [939] = {.lex_state = 53}, - [940] = {.lex_state = 202}, - [941] = {.lex_state = 210}, - [942] = {.lex_state = 210}, - [943] = {.lex_state = 210}, - [944] = {.lex_state = 210}, - [945] = {.lex_state = 54}, - [946] = {.lex_state = 2}, - [947] = {.lex_state = 2}, - [948] = {.lex_state = 203}, - [949] = {.lex_state = 57}, - [950] = {.lex_state = 212}, - [951] = {.lex_state = 212}, - [952] = {.lex_state = 212}, - [953] = {.lex_state = 2}, - [954] = {.lex_state = 54}, - [955] = {.lex_state = 203}, - [956] = {.lex_state = 27}, - [957] = {.lex_state = 64}, - [958] = {.lex_state = 64}, - [959] = {.lex_state = 2}, - [960] = {.lex_state = 64}, - [961] = {.lex_state = 64}, - [962] = {.lex_state = 20}, - [963] = {.lex_state = 212}, - [964] = {.lex_state = 2}, - [965] = {.lex_state = 64}, - [966] = {.lex_state = 24}, - [967] = {.lex_state = 212}, - [968] = {.lex_state = 20}, - [969] = {.lex_state = 203}, - [970] = {.lex_state = 216}, - [971] = {.lex_state = 64}, - [972] = {.lex_state = 64}, - [973] = {.lex_state = 64}, - [974] = {.lex_state = 64}, - [975] = {.lex_state = 64}, - [976] = {.lex_state = 212}, - [977] = {.lex_state = 203}, - [978] = {.lex_state = 22}, - [979] = {.lex_state = 2}, - [980] = {.lex_state = 2}, - [981] = {.lex_state = 203}, - [982] = {.lex_state = 27}, - [983] = {.lex_state = 64}, - [984] = {.lex_state = 2}, - [985] = {.lex_state = 64}, - [986] = {.lex_state = 27}, - [987] = {.lex_state = 64}, - [988] = {.lex_state = 203}, - [989] = {.lex_state = 64}, - [990] = {.lex_state = 212}, - [991] = {.lex_state = 212}, + [886] = {.lex_state = 276}, + [887] = {.lex_state = 37}, + [888] = {.lex_state = 37}, + [889] = {.lex_state = 45}, + [890] = {.lex_state = 286}, + [891] = {.lex_state = 30}, + [892] = {.lex_state = 30}, + [893] = {.lex_state = 295}, + [894] = {.lex_state = 87}, + [895] = {.lex_state = 54}, + [896] = {.lex_state = 295}, + [897] = {.lex_state = 276}, + [898] = {.lex_state = 303}, + [899] = {.lex_state = 295}, + [900] = {.lex_state = 54}, + [901] = {.lex_state = 295}, + [902] = {.lex_state = 105}, + [903] = {.lex_state = 87}, + [904] = {.lex_state = 64}, + [905] = {.lex_state = 54}, + [906] = {.lex_state = 61}, + [907] = {.lex_state = 104}, + [908] = {.lex_state = 12}, + [909] = {.lex_state = 36}, + [910] = {.lex_state = 303}, + [911] = {.lex_state = 281}, + [912] = {.lex_state = 104}, + [913] = {.lex_state = 104}, + [914] = {.lex_state = 120}, + [915] = {.lex_state = 104}, + [916] = {.lex_state = 12}, + [917] = {.lex_state = 281}, + [918] = {.lex_state = 281}, + [919] = {.lex_state = 281}, + [920] = {.lex_state = 295}, + [921] = {.lex_state = 120}, + [922] = {.lex_state = 303}, + [923] = {.lex_state = 104}, + [924] = {.lex_state = 107}, + [925] = {.lex_state = 295}, + [926] = {.lex_state = 104}, + [927] = {.lex_state = 120}, + [928] = {.lex_state = 120}, + [929] = {.lex_state = 37}, + [930] = {.lex_state = 295}, + [931] = {.lex_state = 281}, + [932] = {.lex_state = 96}, + [933] = {.lex_state = 105}, + [934] = {.lex_state = 281}, + [935] = {.lex_state = 42}, + [936] = {.lex_state = 120}, + [937] = {.lex_state = 39}, + [938] = {.lex_state = 42}, + [939] = {.lex_state = 21}, + [940] = {.lex_state = 42}, + [941] = {.lex_state = 42}, + [942] = {.lex_state = 39}, + [943] = {.lex_state = 39}, + [944] = {.lex_state = 39}, + [945] = {.lex_state = 105}, + [946] = {.lex_state = 305}, + [947] = {.lex_state = 37}, + [948] = {.lex_state = 22}, + [949] = {.lex_state = 42}, + [950] = {.lex_state = 42}, + [951] = {.lex_state = 299}, + [952] = {.lex_state = 22}, + [953] = {.lex_state = 39}, + [954] = {.lex_state = 305}, + [955] = {.lex_state = 117}, + [956] = {.lex_state = 95}, + [957] = {.lex_state = 23}, + [958] = {.lex_state = 51}, + [959] = {.lex_state = 23}, + [960] = {.lex_state = 102}, + [961] = {.lex_state = 39}, + [962] = {.lex_state = 51}, + [963] = {.lex_state = 280}, + [964] = {.lex_state = 102}, + [965] = {.lex_state = 102}, + [966] = {.lex_state = 102}, + [967] = {.lex_state = 102}, + [968] = {.lex_state = 51}, + [969] = {.lex_state = 32}, + [970] = {.lex_state = 34}, + [971] = {.lex_state = 32}, + [972] = {.lex_state = 276}, + [973] = {.lex_state = 102}, + [974] = {.lex_state = 276}, + [975] = {.lex_state = 117}, + [976] = {.lex_state = 32}, + [977] = {.lex_state = 276}, + [978] = {.lex_state = 276}, + [979] = {.lex_state = 276}, + [980] = {.lex_state = 111}, + [981] = {.lex_state = 294}, + [982] = {.lex_state = 107}, + [983] = {.lex_state = 117}, + [984] = {.lex_state = 117}, + [985] = {.lex_state = 281}, + [986] = {.lex_state = 117}, + [987] = {.lex_state = 86}, + [988] = {.lex_state = 107}, + [989] = {.lex_state = 65}, + [990] = {.lex_state = 2}, + [991] = {.lex_state = 2}, [992] = {.lex_state = 2}, - [993] = {.lex_state = 50}, + [993] = {.lex_state = 2}, [994] = {.lex_state = 2}, [995] = {.lex_state = 2}, - [996] = {.lex_state = 24}, - [997] = {.lex_state = 204}, + [996] = {.lex_state = 43}, + [997] = {.lex_state = 2}, [998] = {.lex_state = 2}, - [999] = {.lex_state = 24}, - [1000] = {.lex_state = 203}, - [1001] = {.lex_state = 27}, + [999] = {.lex_state = 296}, + [1000] = {.lex_state = 296}, + [1001] = {.lex_state = 2}, [1002] = {.lex_state = 2}, [1003] = {.lex_state = 2}, - [1004] = {.lex_state = 2}, - [1005] = {.lex_state = 24}, - [1006] = {.lex_state = 24}, - [1007] = {.lex_state = 54}, - [1008] = {.lex_state = 203}, - [1009] = {.lex_state = 216}, - [1010] = {.lex_state = 24}, - [1011] = {.lex_state = 24}, - [1012] = {.lex_state = 24}, - [1013] = {.lex_state = 203}, - [1014] = {.lex_state = 57}, - [1015] = {.lex_state = 2}, - [1016] = {.lex_state = 64}, - [1017] = {.lex_state = 24}, - [1018] = {.lex_state = 27}, - [1019] = {.lex_state = 24}, - [1020] = {.lex_state = 212}, - [1021] = {.lex_state = 203}, - [1022] = {.lex_state = 33}, - [1023] = {.lex_state = 24}, - [1024] = {.lex_state = 27}, - [1025] = {.lex_state = 24}, - [1026] = {.lex_state = 24}, - [1027] = {.lex_state = 203}, - [1028] = {.lex_state = 24}, - [1029] = {.lex_state = 61}, - [1030] = {.lex_state = 59}, - [1031] = {.lex_state = 27}, + [1004] = {.lex_state = 311}, + [1005] = {.lex_state = 74}, + [1006] = {.lex_state = 2}, + [1007] = {.lex_state = 106}, + [1008] = {.lex_state = 2}, + [1009] = {.lex_state = 309}, + [1010] = {.lex_state = 296}, + [1011] = {.lex_state = 296}, + [1012] = {.lex_state = 296}, + [1013] = {.lex_state = 2}, + [1014] = {.lex_state = 2}, + [1015] = {.lex_state = 24}, + [1016] = {.lex_state = 2}, + [1017] = {.lex_state = 296}, + [1018] = {.lex_state = 106}, + [1019] = {.lex_state = 2}, + [1020] = {.lex_state = 52}, + [1021] = {.lex_state = 2}, + [1022] = {.lex_state = 2}, + [1023] = {.lex_state = 2}, + [1024] = {.lex_state = 2}, + [1025] = {.lex_state = 113}, + [1026] = {.lex_state = 288}, + [1027] = {.lex_state = 88}, + [1028] = {.lex_state = 287}, + [1029] = {.lex_state = 106}, + [1030] = {.lex_state = 2}, + [1031] = {.lex_state = 2}, [1032] = {.lex_state = 2}, - [1033] = {.lex_state = 61}, - [1034] = {.lex_state = 24}, - [1035] = {.lex_state = 24}, - [1036] = {.lex_state = 2}, - [1037] = {.lex_state = 56}, - [1038] = {.lex_state = 204}, - [1039] = {.lex_state = 2}, - [1040] = {.lex_state = 61}, - [1041] = {.lex_state = 14}, - [1042] = {.lex_state = 14}, - [1043] = {.lex_state = 212}, - [1044] = {.lex_state = 14}, - [1045] = {.lex_state = 50}, - [1046] = {.lex_state = 36}, - [1047] = {.lex_state = 207}, - [1048] = {.lex_state = 2}, - [1049] = {.lex_state = 54}, - [1050] = {.lex_state = 61}, - [1051] = {.lex_state = 203}, - [1052] = {.lex_state = 54}, - [1053] = {.lex_state = 203}, - [1054] = {.lex_state = 54}, - [1055] = {.lex_state = 54}, - [1056] = {.lex_state = 22}, - [1057] = {.lex_state = 61}, - [1058] = {.lex_state = 27}, - [1059] = {.lex_state = 203}, + [1033] = {.lex_state = 88}, + [1034] = {.lex_state = 40}, + [1035] = {.lex_state = 2}, + [1036] = {.lex_state = 118}, + [1037] = {.lex_state = 2}, + [1038] = {.lex_state = 74}, + [1039] = {.lex_state = 287}, + [1040] = {.lex_state = 2}, + [1041] = {.lex_state = 52}, + [1042] = {.lex_state = 2}, + [1043] = {.lex_state = 43}, + [1044] = {.lex_state = 2}, + [1045] = {.lex_state = 24}, + [1046] = {.lex_state = 2}, + [1047] = {.lex_state = 2}, + [1048] = {.lex_state = 74}, + [1049] = {.lex_state = 43}, + [1050] = {.lex_state = 2}, + [1051] = {.lex_state = 287}, + [1052] = {.lex_state = 74}, + [1053] = {.lex_state = 130}, + [1054] = {.lex_state = 2}, + [1055] = {.lex_state = 127}, + [1056] = {.lex_state = 2}, + [1057] = {.lex_state = 2}, + [1058] = {.lex_state = 2}, + [1059] = {.lex_state = 2}, [1060] = {.lex_state = 2}, - [1061] = {.lex_state = 54}, - [1062] = {.lex_state = 27}, - [1063] = {.lex_state = 54}, - [1064] = {.lex_state = 54}, - [1065] = {.lex_state = 64}, - [1066] = {.lex_state = 207}, - [1067] = {.lex_state = 203}, - [1068] = {.lex_state = 27}, - [1069] = {.lex_state = 46}, - [1070] = {.lex_state = 36}, - [1071] = {.lex_state = 54}, + [1061] = {.lex_state = 98}, + [1062] = {.lex_state = 43}, + [1063] = {.lex_state = 2}, + [1064] = {.lex_state = 2}, + [1065] = {.lex_state = 2}, + [1066] = {.lex_state = 108}, + [1067] = {.lex_state = 2}, + [1068] = {.lex_state = 115}, + [1069] = {.lex_state = 118}, + [1070] = {.lex_state = 2}, + [1071] = {.lex_state = 2}, [1072] = {.lex_state = 2}, - [1073] = {.lex_state = 2}, - [1074] = {.lex_state = 46}, - [1075] = {.lex_state = 2}, - [1076] = {.lex_state = 2}, - [1077] = {.lex_state = 54}, - [1078] = {.lex_state = 54}, - [1079] = {.lex_state = 2}, - [1080] = {.lex_state = 54}, - [1081] = {.lex_state = 46}, - [1082] = {.lex_state = 2}, - [1083] = {.lex_state = 54}, - [1084] = {.lex_state = 212}, - [1085] = {.lex_state = 212}, - [1086] = {.lex_state = 61}, - [1087] = {.lex_state = 214}, - [1088] = {.lex_state = 203}, - [1089] = {.lex_state = 27}, - [1090] = {.lex_state = 61}, - [1091] = {.lex_state = 2}, - [1092] = {.lex_state = 2}, - [1093] = {.lex_state = 61}, - [1094] = {.lex_state = 2}, - [1095] = {.lex_state = 2}, - [1096] = {.lex_state = 2}, - [1097] = {.lex_state = 2}, - [1098] = {.lex_state = 212}, - [1099] = {.lex_state = 2}, - [1100] = {.lex_state = 2}, - [1101] = {.lex_state = 2}, - [1102] = {.lex_state = 2}, - [1103] = {.lex_state = 2}, - [1104] = {.lex_state = 212}, - [1105] = {.lex_state = 2}, - [1106] = {.lex_state = 2}, + [1073] = {.lex_state = 43}, + [1074] = {.lex_state = 2}, + [1075] = {.lex_state = 300}, + [1076] = {.lex_state = 306}, + [1077] = {.lex_state = 2}, + [1078] = {.lex_state = 108}, + [1079] = {.lex_state = 115}, + [1080] = {.lex_state = 115}, + [1081] = {.lex_state = 97}, + [1082] = {.lex_state = 127}, + [1083] = {.lex_state = 2}, + [1084] = {.lex_state = 309}, + [1085] = {.lex_state = 71}, + [1086] = {.lex_state = 110}, + [1087] = {.lex_state = 38}, + [1088] = {.lex_state = 309}, + [1089] = {.lex_state = 2}, + [1090] = {.lex_state = 108}, + [1091] = {.lex_state = 115}, + [1092] = {.lex_state = 115}, + [1093] = {.lex_state = 115}, + [1094] = {.lex_state = 306}, + [1095] = {.lex_state = 74}, + [1096] = {.lex_state = 52}, + [1097] = {.lex_state = 74}, + [1098] = {.lex_state = 115}, + [1099] = {.lex_state = 43}, + [1100] = {.lex_state = 118}, + [1101] = {.lex_state = 118}, + [1102] = {.lex_state = 55}, + [1103] = {.lex_state = 46}, + [1104] = {.lex_state = 130}, + [1105] = {.lex_state = 311}, + [1106] = {.lex_state = 70}, [1107] = {.lex_state = 2}, [1108] = {.lex_state = 2}, [1109] = {.lex_state = 2}, [1110] = {.lex_state = 2}, - [1111] = {.lex_state = 2}, - [1112] = {.lex_state = 56}, - [1113] = {.lex_state = 2}, - [1114] = {.lex_state = 2}, - [1115] = {.lex_state = 56}, - [1116] = {.lex_state = 2}, - [1117] = {.lex_state = 56}, - [1118] = {.lex_state = 56}, - [1119] = {.lex_state = 2}, + [1111] = {.lex_state = 309}, + [1112] = {.lex_state = 118}, + [1113] = {.lex_state = 55}, + [1114] = {.lex_state = 289}, + [1115] = {.lex_state = 306}, + [1116] = {.lex_state = 289}, + [1117] = {.lex_state = 55}, + [1118] = {.lex_state = 99}, + [1119] = {.lex_state = 289}, [1120] = {.lex_state = 2}, [1121] = {.lex_state = 2}, [1122] = {.lex_state = 2}, [1123] = {.lex_state = 2}, - [1124] = {.lex_state = 56}, - [1125] = {.lex_state = 216}, - [1126] = {.lex_state = 56}, - [1127] = {.lex_state = 56}, - [1128] = {.lex_state = 56}, - [1129] = {.lex_state = 56}, - [1130] = {.lex_state = 56}, - [1131] = {.lex_state = 59}, + [1124] = {.lex_state = 130}, + [1125] = {.lex_state = 2}, + [1126] = {.lex_state = 46}, + [1127] = {.lex_state = 2}, + [1128] = {.lex_state = 67}, + [1129] = {.lex_state = 289}, + [1130] = {.lex_state = 289}, + [1131] = {.lex_state = 2}, [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 61}, - [1134] = {.lex_state = 56}, - [1135] = {.lex_state = 33}, - [1136] = {.lex_state = 61}, + [1133] = {.lex_state = 137}, + [1134] = {.lex_state = 2}, + [1135] = {.lex_state = 2}, + [1136] = {.lex_state = 2}, [1137] = {.lex_state = 2}, - [1138] = {.lex_state = 61}, - [1139] = {.lex_state = 214}, - [1140] = {.lex_state = 56}, - [1141] = {.lex_state = 56}, - [1142] = {.lex_state = 2}, - [1143] = {.lex_state = 56}, - [1144] = {.lex_state = 2}, - [1145] = {.lex_state = 2}, - [1146] = {.lex_state = 56}, - [1147] = {.lex_state = 27}, - [1148] = {.lex_state = 51}, - [1149] = {.lex_state = 212}, - [1150] = {.lex_state = 50}, + [1138] = {.lex_state = 98}, + [1139] = {.lex_state = 2}, + [1140] = {.lex_state = 2}, + [1141] = {.lex_state = 2}, + [1142] = {.lex_state = 289}, + [1143] = {.lex_state = 2}, + [1144] = {.lex_state = 121}, + [1145] = {.lex_state = 127}, + [1146] = {.lex_state = 2}, + [1147] = {.lex_state = 309}, + [1148] = {.lex_state = 62}, + [1149] = {.lex_state = 121}, + [1150] = {.lex_state = 2}, [1151] = {.lex_state = 2}, - [1152] = {.lex_state = 2}, - [1153] = {.lex_state = 27}, - [1154] = {.lex_state = 2}, - [1155] = {.lex_state = 27}, - [1156] = {.lex_state = 27}, - [1157] = {.lex_state = 61}, - [1158] = {.lex_state = 54}, - [1159] = {.lex_state = 51}, - [1160] = {.lex_state = 61}, - [1161] = {.lex_state = 61}, - [1162] = {.lex_state = 2}, - [1163] = {.lex_state = 2}, - [1164] = {.lex_state = 2}, - [1165] = {.lex_state = 2}, - [1166] = {.lex_state = 2}, - [1167] = {.lex_state = 2}, - [1168] = {.lex_state = 2}, - [1169] = {.lex_state = 2}, - [1170] = {.lex_state = 2}, - [1171] = {.lex_state = 2}, - [1172] = {.lex_state = 61}, - [1173] = {.lex_state = 2}, - [1174] = {.lex_state = 2}, - [1175] = {.lex_state = 2}, - [1176] = {.lex_state = 212}, - [1177] = {.lex_state = 51}, - [1178] = {.lex_state = 2}, - [1179] = {.lex_state = 2}, - [1180] = {.lex_state = 27}, - [1181] = {.lex_state = 2}, - [1182] = {.lex_state = 2}, - [1183] = {.lex_state = 2}, - [1184] = {.lex_state = 61}, - [1185] = {.lex_state = 2}, - [1186] = {.lex_state = 28}, - [1187] = {.lex_state = 37}, - [1188] = {.lex_state = 205}, - [1189] = {.lex_state = 62}, - [1190] = {.lex_state = 208}, - [1191] = {.lex_state = 25}, - [1192] = {.lex_state = 213}, - [1193] = {.lex_state = 62}, - [1194] = {.lex_state = 62}, - [1195] = {.lex_state = 25}, - [1196] = {.lex_state = 25}, - [1197] = {.lex_state = 213}, - [1198] = {.lex_state = 213}, - [1199] = {.lex_state = 205}, - [1200] = {.lex_state = 65}, - [1201] = {.lex_state = 213}, - [1202] = {.lex_state = 25}, - [1203] = {.lex_state = 213}, - [1204] = {.lex_state = 25}, - [1205] = {.lex_state = 213}, - [1206] = {.lex_state = 58}, - [1207] = {.lex_state = 25}, - [1208] = {.lex_state = 60}, - [1209] = {.lex_state = 213}, - [1210] = {.lex_state = 213}, - [1211] = {.lex_state = 208}, - [1212] = {.lex_state = 25}, - [1213] = {.lex_state = 25}, - [1214] = {.lex_state = 62}, - [1215] = {.lex_state = 25}, - [1216] = {.lex_state = 213}, - [1217] = {.lex_state = 213}, - [1218] = {.lex_state = 62}, - [1219] = {.lex_state = 25}, - [1220] = {.lex_state = 25}, - [1221] = {.lex_state = 62}, - [1222] = {.lex_state = 25}, - [1223] = {.lex_state = 62}, - [1224] = {.lex_state = 25}, - [1225] = {.lex_state = 62}, - [1226] = {.lex_state = 62}, - [1227] = {.lex_state = 25}, - [1228] = {.lex_state = 62}, - [1229] = {.lex_state = 213}, - [1230] = {.lex_state = 213}, - [1231] = {.lex_state = 213}, - [1232] = {.lex_state = 62}, - [1233] = {.lex_state = 62}, - [1234] = {.lex_state = 213}, - [1235] = {.lex_state = 62}, - [1236] = {.lex_state = 60}, - [1237] = {.lex_state = 62}, - [1238] = {.lex_state = 62}, - [1239] = {.lex_state = 25}, - [1240] = {.lex_state = 28}, - [1241] = {.lex_state = 28}, - [1242] = {.lex_state = 28}, - [1243] = {.lex_state = 58}, - [1244] = {.lex_state = 65}, - [1245] = {.lex_state = 65}, - [1246] = {.lex_state = 65}, - [1247] = {.lex_state = 34}, - [1248] = {.lex_state = 65}, - [1249] = {.lex_state = 71}, - [1250] = {.lex_state = 65}, - [1251] = {.lex_state = 65}, - [1252] = {.lex_state = 65}, - [1253] = {.lex_state = 74}, - [1254] = {.lex_state = 65}, - [1255] = {.lex_state = 52}, - [1256] = {.lex_state = 65}, - [1257] = {.lex_state = 213}, - [1258] = {.lex_state = 52}, - [1259] = {.lex_state = 213}, - [1260] = {.lex_state = 25}, - [1261] = {.lex_state = 65}, - [1262] = {.lex_state = 39}, - [1263] = {.lex_state = 42}, - [1264] = {.lex_state = 52}, - [1265] = {.lex_state = 28}, - [1266] = {.lex_state = 65}, - [1267] = {.lex_state = 28}, - [1268] = {.lex_state = 39}, - [1269] = {.lex_state = 42}, - [1270] = {.lex_state = 34}, - [1271] = {.lex_state = 62}, - [1272] = {.lex_state = 42}, - [1273] = {.lex_state = 39}, - [1274] = {.lex_state = 74}, - [1275] = {.lex_state = 28}, - [1276] = {.lex_state = 37}, - [1277] = {.lex_state = 65}, - [1278] = {.lex_state = 65}, - [1279] = {.lex_state = 65}, - [1280] = {.lex_state = 28}, - [1281] = {.lex_state = 65}, - [1282] = {.lex_state = 28}, - [1283] = {.lex_state = 41}, - [1284] = {.lex_state = 28}, - [1285] = {.lex_state = 28}, - [1286] = {.lex_state = 40}, - [1287] = {.lex_state = 71}, - [1288] = {.lex_state = 41}, - [1289] = {.lex_state = 41}, - [1290] = {.lex_state = 28}, - [1291] = {.lex_state = 28}, - [1292] = {.lex_state = 40}, - [1293] = {.lex_state = 28}, - [1294] = {.lex_state = 28}, - [1295] = {.lex_state = 40}, - [1296] = {.lex_state = 28}, - [1297] = {.lex_state = 66}, - [1298] = {.lex_state = 63}, - [1299] = {.lex_state = 66}, - [1300] = {.lex_state = 38}, - [1301] = {.lex_state = 66}, - [1302] = {.lex_state = 66}, - [1303] = {.lex_state = 66}, - [1304] = {.lex_state = 66}, - [1305] = {.lex_state = 80}, - [1306] = {.lex_state = 66}, - [1307] = {.lex_state = 80}, - [1308] = {.lex_state = 66}, - [1309] = {.lex_state = 66}, - [1310] = {.lex_state = 80}, - [1311] = {.lex_state = 66}, - [1312] = {.lex_state = 63}, - [1313] = {.lex_state = 216}, - [1314] = {.lex_state = 78}, - [1315] = {.lex_state = 78}, - [1316] = {.lex_state = 35}, - [1317] = {.lex_state = 75}, - [1318] = {.lex_state = 66}, - [1319] = {.lex_state = 216}, - [1320] = {.lex_state = 78}, - [1321] = {.lex_state = 66}, - [1322] = {.lex_state = 79}, - [1323] = {.lex_state = 79}, - [1324] = {.lex_state = 79}, - [1325] = {.lex_state = 66}, - [1326] = {.lex_state = 77}, - [1327] = {.lex_state = 66}, - [1328] = {.lex_state = 72}, - [1329] = {.lex_state = 77}, - [1330] = {.lex_state = 66}, - [1331] = {.lex_state = 77}, - [1332] = {.lex_state = 72}, - [1333] = {.lex_state = 215}, - [1334] = {.lex_state = 63}, - [1335] = {.lex_state = 63}, - [1336] = {.lex_state = 215}, - [1337] = {.lex_state = 75}, - [1338] = {.lex_state = 63}, - [1339] = {.lex_state = 63}, - [1340] = {.lex_state = 35}, - [1341] = {.lex_state = 63}, - [1342] = {.lex_state = 63}, - [1343] = {.lex_state = 66}, - [1344] = {.lex_state = 63}, - [1345] = {.lex_state = 63}, - [1346] = {.lex_state = 63}, - [1347] = {.lex_state = 63}, - [1348] = {.lex_state = 63}, - [1349] = {.lex_state = 63}, - [1350] = {.lex_state = 38}, - [1351] = {.lex_state = 63}, - [1352] = {.lex_state = 63}, - [1353] = {.lex_state = 73}, - [1354] = {.lex_state = 76}, - [1355] = {.lex_state = 76}, - [1356] = {.lex_state = 73}, - [1357] = {.lex_state = 216}, - [1358] = {.lex_state = 216}, - [1359] = {.lex_state = 216}, - [1360] = {.lex_state = 216}, - [1361] = {.lex_state = 216}, - [1362] = {.lex_state = 216}, - [1363] = {.lex_state = 217}, - [1364] = {.lex_state = 216}, - [1365] = {.lex_state = 217}, - [1366] = {.lex_state = 216}, - [1367] = {.lex_state = 217}, - [1368] = {.lex_state = 216}, - [1369] = {.lex_state = 82}, - [1370] = {.lex_state = 217}, - [1371] = {.lex_state = 82}, - [1372] = {.lex_state = 82}, - [1373] = {.lex_state = 216}, - [1374] = {.lex_state = 216}, - [1375] = {.lex_state = 216}, - [1376] = {.lex_state = 216}, - [1377] = {.lex_state = 216}, - [1378] = {.lex_state = 216}, - [1379] = {.lex_state = 216}, - [1380] = {.lex_state = 216}, - [1381] = {.lex_state = 216}, - [1382] = {.lex_state = 221}, - [1383] = {.lex_state = 216}, - [1384] = {.lex_state = 218}, - [1385] = {.lex_state = 216}, - [1386] = {.lex_state = 216}, + [1152] = {.lex_state = 113}, + [1153] = {.lex_state = 113}, + [1154] = {.lex_state = 121}, + [1155] = {.lex_state = 289}, + [1156] = {.lex_state = 2}, + [1157] = {.lex_state = 121}, + [1158] = {.lex_state = 2}, + [1159] = {.lex_state = 140}, + [1160] = {.lex_state = 309}, + [1161] = {.lex_state = 38}, + [1162] = {.lex_state = 99}, + [1163] = {.lex_state = 46}, + [1164] = {.lex_state = 69}, + [1165] = {.lex_state = 46}, + [1166] = {.lex_state = 118}, + [1167] = {.lex_state = 38}, + [1168] = {.lex_state = 38}, + [1169] = {.lex_state = 38}, + [1170] = {.lex_state = 112}, + [1171] = {.lex_state = 38}, + [1172] = {.lex_state = 46}, + [1173] = {.lex_state = 309}, + [1174] = {.lex_state = 71}, + [1175] = {.lex_state = 38}, + [1176] = {.lex_state = 71}, + [1177] = {.lex_state = 40}, + [1178] = {.lex_state = 121}, + [1179] = {.lex_state = 40}, + [1180] = {.lex_state = 40}, + [1181] = {.lex_state = 68}, + [1182] = {.lex_state = 40}, + [1183] = {.lex_state = 46}, + [1184] = {.lex_state = 71}, + [1185] = {.lex_state = 71}, + [1186] = {.lex_state = 296}, + [1187] = {.lex_state = 113}, + [1188] = {.lex_state = 40}, + [1189] = {.lex_state = 40}, + [1190] = {.lex_state = 74}, + [1191] = {.lex_state = 2}, + [1192] = {.lex_state = 2}, + [1193] = {.lex_state = 311}, + [1194] = {.lex_state = 2}, + [1195] = {.lex_state = 2}, + [1196] = {.lex_state = 2}, + [1197] = {.lex_state = 2}, + [1198] = {.lex_state = 71}, + [1199] = {.lex_state = 71}, + [1200] = {.lex_state = 113}, + [1201] = {.lex_state = 113}, + [1202] = {.lex_state = 113}, + [1203] = {.lex_state = 121}, + [1204] = {.lex_state = 116}, + [1205] = {.lex_state = 56}, + [1206] = {.lex_state = 116}, + [1207] = {.lex_state = 143}, + [1208] = {.lex_state = 116}, + [1209] = {.lex_state = 116}, + [1210] = {.lex_state = 72}, + [1211] = {.lex_state = 100}, + [1212] = {.lex_state = 72}, + [1213] = {.lex_state = 72}, + [1214] = {.lex_state = 301}, + [1215] = {.lex_state = 72}, + [1216] = {.lex_state = 141}, + [1217] = {.lex_state = 116}, + [1218] = {.lex_state = 116}, + [1219] = {.lex_state = 75}, + [1220] = {.lex_state = 119}, + [1221] = {.lex_state = 72}, + [1222] = {.lex_state = 72}, + [1223] = {.lex_state = 78}, + [1224] = {.lex_state = 75}, + [1225] = {.lex_state = 75}, + [1226] = {.lex_state = 75}, + [1227] = {.lex_state = 75}, + [1228] = {.lex_state = 119}, + [1229] = {.lex_state = 78}, + [1230] = {.lex_state = 75}, + [1231] = {.lex_state = 119}, + [1232] = {.lex_state = 301}, + [1233] = {.lex_state = 301}, + [1234] = {.lex_state = 79}, + [1235] = {.lex_state = 119}, + [1236] = {.lex_state = 301}, + [1237] = {.lex_state = 79}, + [1238] = {.lex_state = 53}, + [1239] = {.lex_state = 122}, + [1240] = {.lex_state = 145}, + [1241] = {.lex_state = 301}, + [1242] = {.lex_state = 301}, + [1243] = {.lex_state = 80}, + [1244] = {.lex_state = 144}, + [1245] = {.lex_state = 53}, + [1246] = {.lex_state = 290}, + [1247] = {.lex_state = 150}, + [1248] = {.lex_state = 290}, + [1249] = {.lex_state = 114}, + [1250] = {.lex_state = 80}, + [1251] = {.lex_state = 290}, + [1252] = {.lex_state = 290}, + [1253] = {.lex_state = 114}, + [1254] = {.lex_state = 114}, + [1255] = {.lex_state = 114}, + [1256] = {.lex_state = 66}, + [1257] = {.lex_state = 146}, + [1258] = {.lex_state = 53}, + [1259] = {.lex_state = 147}, + [1260] = {.lex_state = 290}, + [1261] = {.lex_state = 147}, + [1262] = {.lex_state = 77}, + [1263] = {.lex_state = 147}, + [1264] = {.lex_state = 114}, + [1265] = {.lex_state = 114}, + [1266] = {.lex_state = 75}, + [1267] = {.lex_state = 128}, + [1268] = {.lex_state = 290}, + [1269] = {.lex_state = 150}, + [1270] = {.lex_state = 119}, + [1271] = {.lex_state = 150}, + [1272] = {.lex_state = 150}, + [1273] = {.lex_state = 77}, + [1274] = {.lex_state = 150}, + [1275] = {.lex_state = 301}, + [1276] = {.lex_state = 122}, + [1277] = {.lex_state = 116}, + [1278] = {.lex_state = 131}, + [1279] = {.lex_state = 150}, + [1280] = {.lex_state = 147}, + [1281] = {.lex_state = 138}, + [1282] = {.lex_state = 150}, + [1283] = {.lex_state = 308}, + [1284] = {.lex_state = 307}, + [1285] = {.lex_state = 131}, + [1286] = {.lex_state = 122}, + [1287] = {.lex_state = 128}, + [1288] = {.lex_state = 122}, + [1289] = {.lex_state = 56}, + [1290] = {.lex_state = 122}, + [1291] = {.lex_state = 63}, + [1292] = {.lex_state = 131}, + [1293] = {.lex_state = 128}, + [1294] = {.lex_state = 307}, + [1295] = {.lex_state = 72}, + [1296] = {.lex_state = 290}, + [1297] = {.lex_state = 122}, + [1298] = {.lex_state = 119}, + [1299] = {.lex_state = 307}, + [1300] = {.lex_state = 147}, + [1301] = {.lex_state = 56}, + [1302] = {.lex_state = 114}, + [1303] = {.lex_state = 147}, + [1304] = {.lex_state = 100}, + [1305] = {.lex_state = 147}, + [1306] = {.lex_state = 153}, + [1307] = {.lex_state = 76}, + [1308] = {.lex_state = 73}, + [1309] = {.lex_state = 148}, + [1310] = {.lex_state = 310}, + [1311] = {.lex_state = 310}, + [1312] = {.lex_state = 132}, + [1313] = {.lex_state = 129}, + [1314] = {.lex_state = 76}, + [1315] = {.lex_state = 132}, + [1316] = {.lex_state = 73}, + [1317] = {.lex_state = 310}, + [1318] = {.lex_state = 73}, + [1319] = {.lex_state = 132}, + [1320] = {.lex_state = 76}, + [1321] = {.lex_state = 76}, + [1322] = {.lex_state = 155}, + [1323] = {.lex_state = 129}, + [1324] = {.lex_state = 155}, + [1325] = {.lex_state = 129}, + [1326] = {.lex_state = 154}, + [1327] = {.lex_state = 151}, + [1328] = {.lex_state = 73}, + [1329] = {.lex_state = 154}, + [1330] = {.lex_state = 148}, + [1331] = {.lex_state = 148}, + [1332] = {.lex_state = 151}, + [1333] = {.lex_state = 73}, + [1334] = {.lex_state = 156}, + [1335] = {.lex_state = 142}, + [1336] = {.lex_state = 76}, + [1337] = {.lex_state = 76}, + [1338] = {.lex_state = 76}, + [1339] = {.lex_state = 148}, + [1340] = {.lex_state = 139}, + [1341] = {.lex_state = 310}, + [1342] = {.lex_state = 310}, + [1343] = {.lex_state = 311}, + [1344] = {.lex_state = 310}, + [1345] = {.lex_state = 153}, + [1346] = {.lex_state = 151}, + [1347] = {.lex_state = 151}, + [1348] = {.lex_state = 151}, + [1349] = {.lex_state = 151}, + [1350] = {.lex_state = 73}, + [1351] = {.lex_state = 311}, + [1352] = {.lex_state = 310}, + [1353] = {.lex_state = 148}, + [1354] = {.lex_state = 148}, + [1355] = {.lex_state = 73}, + [1356] = {.lex_state = 156}, + [1357] = {.lex_state = 148}, + [1358] = {.lex_state = 151}, + [1359] = {.lex_state = 152}, + [1360] = {.lex_state = 152}, + [1361] = {.lex_state = 149}, + [1362] = {.lex_state = 149}, + [1363] = {.lex_state = 149}, + [1364] = {.lex_state = 149}, + [1365] = {.lex_state = 152}, + [1366] = {.lex_state = 152}, + [1367] = {.lex_state = 152}, + [1368] = {.lex_state = 149}, + [1369] = {.lex_state = 152}, + [1370] = {.lex_state = 149}, + [1371] = {.lex_state = 152}, + [1372] = {.lex_state = 149}, + [1373] = {.lex_state = 311}, + [1374] = {.lex_state = 311}, + [1375] = {.lex_state = 311}, + [1376] = {.lex_state = 311}, + [1377] = {.lex_state = 311}, + [1378] = {.lex_state = 311}, + [1379] = {.lex_state = 312}, + [1380] = {.lex_state = 311}, + [1381] = {.lex_state = 312}, + [1382] = {.lex_state = 312}, + [1383] = {.lex_state = 311}, + [1384] = {.lex_state = 2}, + [1385] = {.lex_state = 2}, + [1386] = {.lex_state = 2}, [1387] = {.lex_state = 2}, - [1388] = {.lex_state = 216}, - [1389] = {.lex_state = 216}, - [1390] = {.lex_state = 221}, - [1391] = {.lex_state = 222}, + [1388] = {.lex_state = 2}, + [1389] = {.lex_state = 2}, + [1390] = {.lex_state = 312}, + [1391] = {.lex_state = 2}, [1392] = {.lex_state = 2}, [1393] = {.lex_state = 2}, - [1394] = {.lex_state = 221}, - [1395] = {.lex_state = 224}, + [1394] = {.lex_state = 2}, + [1395] = {.lex_state = 2}, [1396] = {.lex_state = 2}, - [1397] = {.lex_state = 216}, + [1397] = {.lex_state = 2}, [1398] = {.lex_state = 2}, [1399] = {.lex_state = 2}, [1400] = {.lex_state = 2}, @@ -12586,815 +16183,815 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1411] = {.lex_state = 2}, [1412] = {.lex_state = 2}, [1413] = {.lex_state = 2}, - [1414] = {.lex_state = 216}, - [1415] = {.lex_state = 217}, + [1414] = {.lex_state = 2}, + [1415] = {.lex_state = 2}, [1416] = {.lex_state = 2}, [1417] = {.lex_state = 2}, [1418] = {.lex_state = 2}, [1419] = {.lex_state = 2}, [1420] = {.lex_state = 2}, [1421] = {.lex_state = 2}, - [1422] = {.lex_state = 216}, + [1422] = {.lex_state = 2}, [1423] = {.lex_state = 2}, - [1424] = {.lex_state = 216}, + [1424] = {.lex_state = 2}, [1425] = {.lex_state = 2}, [1426] = {.lex_state = 2}, - [1427] = {.lex_state = 216}, - [1428] = {.lex_state = 216}, + [1427] = {.lex_state = 2}, + [1428] = {.lex_state = 2}, [1429] = {.lex_state = 2}, - [1430] = {.lex_state = 2}, - [1431] = {.lex_state = 2}, - [1432] = {.lex_state = 228}, + [1430] = {.lex_state = 157}, + [1431] = {.lex_state = 157}, + [1432] = {.lex_state = 2}, [1433] = {.lex_state = 2}, [1434] = {.lex_state = 2}, - [1435] = {.lex_state = 216}, + [1435] = {.lex_state = 2}, [1436] = {.lex_state = 2}, [1437] = {.lex_state = 2}, - [1438] = {.lex_state = 216}, - [1439] = {.lex_state = 216}, + [1438] = {.lex_state = 2}, + [1439] = {.lex_state = 2}, [1440] = {.lex_state = 2}, - [1441] = {.lex_state = 216}, + [1441] = {.lex_state = 2}, [1442] = {.lex_state = 2}, - [1443] = {.lex_state = 216}, - [1444] = {.lex_state = 2}, + [1443] = {.lex_state = 2}, + [1444] = {.lex_state = 157}, [1445] = {.lex_state = 2}, - [1446] = {.lex_state = 216}, - [1447] = {.lex_state = 216}, - [1448] = {.lex_state = 216}, + [1446] = {.lex_state = 2}, + [1447] = {.lex_state = 2}, + [1448] = {.lex_state = 2}, [1449] = {.lex_state = 2}, [1450] = {.lex_state = 2}, - [1451] = {.lex_state = 216}, - [1452] = {.lex_state = 216}, - [1453] = {.lex_state = 216}, - [1454] = {.lex_state = 216}, - [1455] = {.lex_state = 216}, - [1456] = {.lex_state = 216}, - [1457] = {.lex_state = 2}, - [1458] = {.lex_state = 2}, - [1459] = {.lex_state = 2}, - [1460] = {.lex_state = 2}, - [1461] = {.lex_state = 216}, - [1462] = {.lex_state = 216}, - [1463] = {.lex_state = 2}, - [1464] = {.lex_state = 2}, - [1465] = {.lex_state = 2}, - [1466] = {.lex_state = 216}, - [1467] = {.lex_state = 216}, - [1468] = {.lex_state = 216}, - [1469] = {.lex_state = 216}, - [1470] = {.lex_state = 229}, - [1471] = {.lex_state = 216}, - [1472] = {.lex_state = 225}, - [1473] = {.lex_state = 216}, - [1474] = {.lex_state = 216}, - [1475] = {.lex_state = 228}, - [1476] = {.lex_state = 216}, - [1477] = {.lex_state = 216}, - [1478] = {.lex_state = 216}, - [1479] = {.lex_state = 216}, - [1480] = {.lex_state = 216}, - [1481] = {.lex_state = 216}, - [1482] = {.lex_state = 232}, - [1483] = {.lex_state = 82}, - [1484] = {.lex_state = 82}, - [1485] = {.lex_state = 216}, - [1486] = {.lex_state = 216}, - [1487] = {.lex_state = 216}, - [1488] = {.lex_state = 222}, - [1489] = {.lex_state = 216}, - [1490] = {.lex_state = 216}, - [1491] = {.lex_state = 216}, - [1492] = {.lex_state = 216}, - [1493] = {.lex_state = 216}, - [1494] = {.lex_state = 224}, - [1495] = {.lex_state = 224}, - [1496] = {.lex_state = 216}, - [1497] = {.lex_state = 216}, - [1498] = {.lex_state = 216}, - [1499] = {.lex_state = 222}, - [1500] = {.lex_state = 216}, - [1501] = {.lex_state = 228}, - [1502] = {.lex_state = 216}, - [1503] = {.lex_state = 216}, - [1504] = {.lex_state = 216}, - [1505] = {.lex_state = 216}, - [1506] = {.lex_state = 229}, - [1507] = {.lex_state = 216}, - [1508] = {.lex_state = 216}, - [1509] = {.lex_state = 216}, - [1510] = {.lex_state = 5}, - [1511] = {.lex_state = 232}, - [1512] = {.lex_state = 216}, - [1513] = {.lex_state = 216}, - [1514] = {.lex_state = 5}, - [1515] = {.lex_state = 216}, - [1516] = {.lex_state = 216}, - [1517] = {.lex_state = 216}, - [1518] = {.lex_state = 216}, - [1519] = {.lex_state = 216}, - [1520] = {.lex_state = 216}, - [1521] = {.lex_state = 224}, - [1522] = {.lex_state = 225}, - [1523] = {.lex_state = 216}, - [1524] = {.lex_state = 216}, - [1525] = {.lex_state = 5}, - [1526] = {.lex_state = 216}, - [1527] = {.lex_state = 216}, - [1528] = {.lex_state = 5}, - [1529] = {.lex_state = 216}, - [1530] = {.lex_state = 216}, - [1531] = {.lex_state = 216}, - [1532] = {.lex_state = 5}, - [1533] = {.lex_state = 225}, - [1534] = {.lex_state = 216}, - [1535] = {.lex_state = 229}, - [1536] = {.lex_state = 5}, - [1537] = {.lex_state = 216}, - [1538] = {.lex_state = 5}, - [1539] = {.lex_state = 216}, - [1540] = {.lex_state = 5}, - [1541] = {.lex_state = 5}, - [1542] = {.lex_state = 224}, - [1543] = {.lex_state = 5}, - [1544] = {.lex_state = 233}, - [1545] = {.lex_state = 216}, - [1546] = {.lex_state = 216}, - [1547] = {.lex_state = 233}, - [1548] = {.lex_state = 5}, - [1549] = {.lex_state = 216}, - [1550] = {.lex_state = 5}, - [1551] = {.lex_state = 216}, - [1552] = {.lex_state = 5}, - [1553] = {.lex_state = 5}, - [1554] = {.lex_state = 232}, - [1555] = {.lex_state = 216}, - [1556] = {.lex_state = 216}, - [1557] = {.lex_state = 5}, - [1558] = {.lex_state = 216}, - [1559] = {.lex_state = 216}, - [1560] = {.lex_state = 5}, - [1561] = {.lex_state = 43}, - [1562] = {.lex_state = 9}, - [1563] = {.lex_state = 10}, - [1564] = {.lex_state = 216}, - [1565] = {.lex_state = 216}, - [1566] = {.lex_state = 216}, - [1567] = {.lex_state = 10}, - [1568] = {.lex_state = 10}, - [1569] = {.lex_state = 10}, - [1570] = {.lex_state = 216}, - [1571] = {.lex_state = 216}, - [1572] = {.lex_state = 233}, - [1573] = {.lex_state = 10}, - [1574] = {.lex_state = 10}, - [1575] = {.lex_state = 10}, - [1576] = {.lex_state = 10}, - [1577] = {.lex_state = 6}, - [1578] = {.lex_state = 6}, - [1579] = {.lex_state = 224}, - [1580] = {.lex_state = 216}, - [1581] = {.lex_state = 6}, - [1582] = {.lex_state = 216}, - [1583] = {.lex_state = 6}, - [1584] = {.lex_state = 216}, - [1585] = {.lex_state = 10}, - [1586] = {.lex_state = 216}, - [1587] = {.lex_state = 9}, - [1588] = {.lex_state = 6}, - [1589] = {.lex_state = 10}, - [1590] = {.lex_state = 6}, - [1591] = {.lex_state = 6}, - [1592] = {.lex_state = 216}, - [1593] = {.lex_state = 6}, - [1594] = {.lex_state = 6}, - [1595] = {.lex_state = 216}, - [1596] = {.lex_state = 43}, - [1597] = {.lex_state = 10}, - [1598] = {.lex_state = 9}, - [1599] = {.lex_state = 9}, - [1600] = {.lex_state = 216}, - [1601] = {.lex_state = 10}, - [1602] = {.lex_state = 6}, - [1603] = {.lex_state = 6}, - [1604] = {.lex_state = 216}, - [1605] = {.lex_state = 216}, - [1606] = {.lex_state = 216}, - [1607] = {.lex_state = 216}, - [1608] = {.lex_state = 216}, - [1609] = {.lex_state = 216}, - [1610] = {.lex_state = 216}, - [1611] = {.lex_state = 233}, - [1612] = {.lex_state = 216}, - [1613] = {.lex_state = 43}, - [1614] = {.lex_state = 6}, - [1615] = {.lex_state = 216}, - [1616] = {.lex_state = 216}, - [1617] = {.lex_state = 216}, - [1618] = {.lex_state = 216}, - [1619] = {.lex_state = 10}, - [1620] = {.lex_state = 9}, - [1621] = {.lex_state = 43}, - [1622] = {.lex_state = 6}, - [1623] = {.lex_state = 43}, - [1624] = {.lex_state = 224}, - [1625] = {.lex_state = 216}, - [1626] = {.lex_state = 216}, - [1627] = {.lex_state = 43}, - [1628] = {.lex_state = 43}, - [1629] = {.lex_state = 224}, - [1630] = {.lex_state = 43}, - [1631] = {.lex_state = 43}, - [1632] = {.lex_state = 9}, - [1633] = {.lex_state = 6}, - [1634] = {.lex_state = 7}, - [1635] = {.lex_state = 7}, - [1636] = {.lex_state = 9}, - [1637] = {.lex_state = 9}, - [1638] = {.lex_state = 9}, - [1639] = {.lex_state = 9}, - [1640] = {.lex_state = 43}, - [1641] = {.lex_state = 10}, - [1642] = {.lex_state = 9}, - [1643] = {.lex_state = 9}, - [1644] = {.lex_state = 6}, - [1645] = {.lex_state = 232}, - [1646] = {.lex_state = 43}, - [1647] = {.lex_state = 9}, - [1648] = {.lex_state = 43}, - [1649] = {.lex_state = 43}, - [1650] = {.lex_state = 43}, - [1651] = {.lex_state = 43}, - [1652] = {.lex_state = 10}, - [1653] = {.lex_state = 10}, - [1654] = {.lex_state = 216}, - [1655] = {.lex_state = 6}, - [1656] = {.lex_state = 216}, - [1657] = {.lex_state = 9}, - [1658] = {.lex_state = 43}, - [1659] = {.lex_state = 216}, - [1660] = {.lex_state = 233}, - [1661] = {.lex_state = 224}, - [1662] = {.lex_state = 233}, - [1663] = {.lex_state = 9}, - [1664] = {.lex_state = 9}, - [1665] = {.lex_state = 81}, - [1666] = {.lex_state = 45}, - [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 12}, - [1669] = {.lex_state = 47}, - [1670] = {.lex_state = 81}, - [1671] = {.lex_state = 47}, - [1672] = {.lex_state = 81}, - [1673] = {.lex_state = 81}, - [1674] = {.lex_state = 81}, - [1675] = {.lex_state = 81}, - [1676] = {.lex_state = 11}, - [1677] = {.lex_state = 81}, - [1678] = {.lex_state = 81}, - [1679] = {.lex_state = 81}, - [1680] = {.lex_state = 44}, - [1681] = {.lex_state = 47}, - [1682] = {.lex_state = 81}, - [1683] = {.lex_state = 81}, - [1684] = {.lex_state = 81}, - [1685] = {.lex_state = 47}, - [1686] = {.lex_state = 11}, - [1687] = {.lex_state = 216}, - [1688] = {.lex_state = 81}, - [1689] = {.lex_state = 47}, - [1690] = {.lex_state = 47}, - [1691] = {.lex_state = 81}, - [1692] = {.lex_state = 81}, - [1693] = {.lex_state = 11}, - [1694] = {.lex_state = 81}, - [1695] = {.lex_state = 81}, - [1696] = {.lex_state = 11}, - [1697] = {.lex_state = 47}, - [1698] = {.lex_state = 81}, - [1699] = {.lex_state = 11}, - [1700] = {.lex_state = 81}, - [1701] = {.lex_state = 81}, - [1702] = {.lex_state = 81}, - [1703] = {.lex_state = 47}, - [1704] = {.lex_state = 81}, - [1705] = {.lex_state = 81}, - [1706] = {.lex_state = 81}, - [1707] = {.lex_state = 11}, - [1708] = {.lex_state = 11}, - [1709] = {.lex_state = 81}, - [1710] = {.lex_state = 44}, - [1711] = {.lex_state = 232}, - [1712] = {.lex_state = 11}, + [1451] = {.lex_state = 2}, + [1452] = {.lex_state = 311}, + [1453] = {.lex_state = 2}, + [1454] = {.lex_state = 311}, + [1455] = {.lex_state = 311}, + [1456] = {.lex_state = 311}, + [1457] = {.lex_state = 311}, + [1458] = {.lex_state = 311}, + [1459] = {.lex_state = 311}, + [1460] = {.lex_state = 311}, + [1461] = {.lex_state = 286}, + [1462] = {.lex_state = 313}, + [1463] = {.lex_state = 311}, + [1464] = {.lex_state = 311}, + [1465] = {.lex_state = 311}, + [1466] = {.lex_state = 311}, + [1467] = {.lex_state = 311}, + [1468] = {.lex_state = 311}, + [1469] = {.lex_state = 311}, + [1470] = {.lex_state = 311}, + [1471] = {.lex_state = 311}, + [1472] = {.lex_state = 311}, + [1473] = {.lex_state = 311}, + [1474] = {.lex_state = 311}, + [1475] = {.lex_state = 311}, + [1476] = {.lex_state = 311}, + [1477] = {.lex_state = 311}, + [1478] = {.lex_state = 311}, + [1479] = {.lex_state = 311}, + [1480] = {.lex_state = 311}, + [1481] = {.lex_state = 311}, + [1482] = {.lex_state = 311}, + [1483] = {.lex_state = 311}, + [1484] = {.lex_state = 312}, + [1485] = {.lex_state = 311}, + [1486] = {.lex_state = 311}, + [1487] = {.lex_state = 311}, + [1488] = {.lex_state = 317}, + [1489] = {.lex_state = 311}, + [1490] = {.lex_state = 311}, + [1491] = {.lex_state = 311}, + [1492] = {.lex_state = 311}, + [1493] = {.lex_state = 313}, + [1494] = {.lex_state = 314}, + [1495] = {.lex_state = 311}, + [1496] = {.lex_state = 311}, + [1497] = {.lex_state = 311}, + [1498] = {.lex_state = 325}, + [1499] = {.lex_state = 313}, + [1500] = {.lex_state = 325}, + [1501] = {.lex_state = 5}, + [1502] = {.lex_state = 311}, + [1503] = {.lex_state = 311}, + [1504] = {.lex_state = 311}, + [1505] = {.lex_state = 318}, + [1506] = {.lex_state = 311}, + [1507] = {.lex_state = 311}, + [1508] = {.lex_state = 311}, + [1509] = {.lex_state = 5}, + [1510] = {.lex_state = 311}, + [1511] = {.lex_state = 311}, + [1512] = {.lex_state = 311}, + [1513] = {.lex_state = 311}, + [1514] = {.lex_state = 311}, + [1515] = {.lex_state = 5}, + [1516] = {.lex_state = 311}, + [1517] = {.lex_state = 5}, + [1518] = {.lex_state = 311}, + [1519] = {.lex_state = 311}, + [1520] = {.lex_state = 317}, + [1521] = {.lex_state = 311}, + [1522] = {.lex_state = 5}, + [1523] = {.lex_state = 311}, + [1524] = {.lex_state = 311}, + [1525] = {.lex_state = 311}, + [1526] = {.lex_state = 5}, + [1527] = {.lex_state = 326}, + [1528] = {.lex_state = 157}, + [1529] = {.lex_state = 157}, + [1530] = {.lex_state = 329}, + [1531] = {.lex_state = 314}, + [1532] = {.lex_state = 311}, + [1533] = {.lex_state = 311}, + [1534] = {.lex_state = 314}, + [1535] = {.lex_state = 311}, + [1536] = {.lex_state = 317}, + [1537] = {.lex_state = 325}, + [1538] = {.lex_state = 311}, + [1539] = {.lex_state = 311}, + [1540] = {.lex_state = 311}, + [1541] = {.lex_state = 311}, + [1542] = {.lex_state = 311}, + [1543] = {.lex_state = 14}, + [1544] = {.lex_state = 329}, + [1545] = {.lex_state = 81}, + [1546] = {.lex_state = 6}, + [1547] = {.lex_state = 311}, + [1548] = {.lex_state = 326}, + [1549] = {.lex_state = 13}, + [1550] = {.lex_state = 14}, + [1551] = {.lex_state = 81}, + [1552] = {.lex_state = 81}, + [1553] = {.lex_state = 311}, + [1554] = {.lex_state = 311}, + [1555] = {.lex_state = 311}, + [1556] = {.lex_state = 7}, + [1557] = {.lex_state = 326}, + [1558] = {.lex_state = 311}, + [1559] = {.lex_state = 311}, + [1560] = {.lex_state = 6}, + [1561] = {.lex_state = 14}, + [1562] = {.lex_state = 13}, + [1563] = {.lex_state = 13}, + [1564] = {.lex_state = 7}, + [1565] = {.lex_state = 318}, + [1566] = {.lex_state = 6}, + [1567] = {.lex_state = 6}, + [1568] = {.lex_state = 318}, + [1569] = {.lex_state = 311}, + [1570] = {.lex_state = 13}, + [1571] = {.lex_state = 311}, + [1572] = {.lex_state = 81}, + [1573] = {.lex_state = 311}, + [1574] = {.lex_state = 311}, + [1575] = {.lex_state = 6}, + [1576] = {.lex_state = 329}, + [1577] = {.lex_state = 311}, + [1578] = {.lex_state = 14}, + [1579] = {.lex_state = 311}, + [1580] = {.lex_state = 6}, + [1581] = {.lex_state = 311}, + [1582] = {.lex_state = 14}, + [1583] = {.lex_state = 14}, + [1584] = {.lex_state = 311}, + [1585] = {.lex_state = 311}, + [1586] = {.lex_state = 81}, + [1587] = {.lex_state = 317}, + [1588] = {.lex_state = 9}, + [1589] = {.lex_state = 311}, + [1590] = {.lex_state = 311}, + [1591] = {.lex_state = 311}, + [1592] = {.lex_state = 311}, + [1593] = {.lex_state = 311}, + [1594] = {.lex_state = 13}, + [1595] = {.lex_state = 311}, + [1596] = {.lex_state = 311}, + [1597] = {.lex_state = 13}, + [1598] = {.lex_state = 311}, + [1599] = {.lex_state = 311}, + [1600] = {.lex_state = 317}, + [1601] = {.lex_state = 311}, + [1602] = {.lex_state = 311}, + [1603] = {.lex_state = 7}, + [1604] = {.lex_state = 311}, + [1605] = {.lex_state = 311}, + [1606] = {.lex_state = 311}, + [1607] = {.lex_state = 81}, + [1608] = {.lex_state = 330}, + [1609] = {.lex_state = 330}, + [1610] = {.lex_state = 311}, + [1611] = {.lex_state = 330}, + [1612] = {.lex_state = 8}, + [1613] = {.lex_state = 311}, + [1614] = {.lex_state = 311}, + [1615] = {.lex_state = 311}, + [1616] = {.lex_state = 83}, + [1617] = {.lex_state = 90}, + [1618] = {.lex_state = 311}, + [1619] = {.lex_state = 311}, + [1620] = {.lex_state = 15}, + [1621] = {.lex_state = 19}, + [1622] = {.lex_state = 15}, + [1623] = {.lex_state = 317}, + [1624] = {.lex_state = 90}, + [1625] = {.lex_state = 311}, + [1626] = {.lex_state = 11}, + [1627] = {.lex_state = 90}, + [1628] = {.lex_state = 317}, + [1629] = {.lex_state = 311}, + [1630] = {.lex_state = 89}, + [1631] = {.lex_state = 90}, + [1632] = {.lex_state = 317}, + [1633] = {.lex_state = 311}, + [1634] = {.lex_state = 90}, + [1635] = {.lex_state = 17}, + [1636] = {.lex_state = 311}, + [1637] = {.lex_state = 15}, + [1638] = {.lex_state = 89}, + [1639] = {.lex_state = 89}, + [1640] = {.lex_state = 311}, + [1641] = {.lex_state = 329}, + [1642] = {.lex_state = 17}, + [1643] = {.lex_state = 16}, + [1644] = {.lex_state = 16}, + [1645] = {.lex_state = 89}, + [1646] = {.lex_state = 311}, + [1647] = {.lex_state = 311}, + [1648] = {.lex_state = 15}, + [1649] = {.lex_state = 20}, + [1650] = {.lex_state = 82}, + [1651] = {.lex_state = 311}, + [1652] = {.lex_state = 11}, + [1653] = {.lex_state = 85}, + [1654] = {.lex_state = 11}, + [1655] = {.lex_state = 11}, + [1656] = {.lex_state = 311}, + [1657] = {.lex_state = 311}, + [1658] = {.lex_state = 15}, + [1659] = {.lex_state = 311}, + [1660] = {.lex_state = 311}, + [1661] = {.lex_state = 15}, + [1662] = {.lex_state = 89}, + [1663] = {.lex_state = 311}, + [1664] = {.lex_state = 311}, + [1665] = {.lex_state = 330}, + [1666] = {.lex_state = 317}, + [1667] = {.lex_state = 11}, + [1668] = {.lex_state = 11}, + [1669] = {.lex_state = 311}, + [1670] = {.lex_state = 311}, + [1671] = {.lex_state = 311}, + [1672] = {.lex_state = 11}, + [1673] = {.lex_state = 82}, + [1674] = {.lex_state = 82}, + [1675] = {.lex_state = 311}, + [1676] = {.lex_state = 10}, + [1677] = {.lex_state = 8}, + [1678] = {.lex_state = 90}, + [1679] = {.lex_state = 311}, + [1680] = {.lex_state = 89}, + [1681] = {.lex_state = 311}, + [1682] = {.lex_state = 82}, + [1683] = {.lex_state = 311}, + [1684] = {.lex_state = 311}, + [1685] = {.lex_state = 17}, + [1686] = {.lex_state = 16}, + [1687] = {.lex_state = 311}, + [1688] = {.lex_state = 311}, + [1689] = {.lex_state = 83}, + [1690] = {.lex_state = 330}, + [1691] = {.lex_state = 82}, + [1692] = {.lex_state = 8}, + [1693] = {.lex_state = 83}, + [1694] = {.lex_state = 82}, + [1695] = {.lex_state = 330}, + [1696] = {.lex_state = 84}, + [1697] = {.lex_state = 49}, + [1698] = {.lex_state = 12}, + [1699] = {.lex_state = 23}, + [1700] = {.lex_state = 23}, + [1701] = {.lex_state = 49}, + [1702] = {.lex_state = 22}, + [1703] = {.lex_state = 50}, + [1704] = {.lex_state = 49}, + [1705] = {.lex_state = 49}, + [1706] = {.lex_state = 84}, + [1707] = {.lex_state = 311}, + [1708] = {.lex_state = 47}, + [1709] = {.lex_state = 49}, + [1710] = {.lex_state = 87}, + [1711] = {.lex_state = 93}, + [1712] = {.lex_state = 329}, [1713] = {.lex_state = 47}, - [1714] = {.lex_state = 11}, - [1715] = {.lex_state = 11}, - [1716] = {.lex_state = 47}, - [1717] = {.lex_state = 81}, - [1718] = {.lex_state = 47}, - [1719] = {.lex_state = 44}, + [1714] = {.lex_state = 95}, + [1715] = {.lex_state = 92}, + [1716] = {.lex_state = 48}, + [1717] = {.lex_state = 84}, + [1718] = {.lex_state = 22}, + [1719] = {.lex_state = 23}, [1720] = {.lex_state = 47}, - [1721] = {.lex_state = 81}, - [1722] = {.lex_state = 81}, - [1723] = {.lex_state = 81}, - [1724] = {.lex_state = 81}, - [1725] = {.lex_state = 44}, - [1726] = {.lex_state = 11}, - [1727] = {.lex_state = 81}, - [1728] = {.lex_state = 81}, - [1729] = {.lex_state = 11}, - [1730] = {.lex_state = 81}, - [1731] = {.lex_state = 81}, - [1732] = {.lex_state = 81}, - [1733] = {.lex_state = 81}, - [1734] = {.lex_state = 81}, - [1735] = {.lex_state = 81}, - [1736] = {.lex_state = 13}, - [1737] = {.lex_state = 11}, - [1738] = {.lex_state = 81}, - [1739] = {.lex_state = 81}, - [1740] = {.lex_state = 81}, - [1741] = {.lex_state = 232}, - [1742] = {.lex_state = 47}, - [1743] = {.lex_state = 81}, - [1744] = {.lex_state = 44}, - [1745] = {.lex_state = 81}, - [1746] = {.lex_state = 81}, - [1747] = {.lex_state = 81}, - [1748] = {.lex_state = 11}, - [1749] = {.lex_state = 11}, - [1750] = {.lex_state = 81}, - [1751] = {.lex_state = 81}, - [1752] = {.lex_state = 81}, - [1753] = {.lex_state = 47}, - [1754] = {.lex_state = 81}, - [1755] = {.lex_state = 44}, - [1756] = {.lex_state = 81}, - [1757] = {.lex_state = 48}, - [1758] = {.lex_state = 13}, - [1759] = {.lex_state = 48}, - [1760] = {.lex_state = 81}, - [1761] = {.lex_state = 81}, - [1762] = {.lex_state = 81}, - [1763] = {.lex_state = 81}, - [1764] = {.lex_state = 81}, - [1765] = {.lex_state = 81}, - [1766] = {.lex_state = 81}, - [1767] = {.lex_state = 44}, - [1768] = {.lex_state = 81}, - [1769] = {.lex_state = 48}, - [1770] = {.lex_state = 81}, - [1771] = {.lex_state = 44}, - [1772] = {.lex_state = 81}, - [1773] = {.lex_state = 44}, - [1774] = {.lex_state = 81}, - [1775] = {.lex_state = 48}, - [1776] = {.lex_state = 81}, - [1777] = {.lex_state = 44}, - [1778] = {.lex_state = 81}, - [1779] = {.lex_state = 81}, - [1780] = {.lex_state = 12}, - [1781] = {.lex_state = 81}, - [1782] = {.lex_state = 48}, - [1783] = {.lex_state = 81}, - [1784] = {.lex_state = 48}, - [1785] = {.lex_state = 81}, - [1786] = {.lex_state = 48}, - [1787] = {.lex_state = 48}, - [1788] = {.lex_state = 81}, - [1789] = {.lex_state = 81}, - [1790] = {.lex_state = 81}, - [1791] = {.lex_state = 81}, - [1792] = {.lex_state = 44}, - [1793] = {.lex_state = 81}, - [1794] = {.lex_state = 81}, - [1795] = {.lex_state = 47}, - [1796] = {.lex_state = 81}, - [1797] = {.lex_state = 48}, - [1798] = {.lex_state = 81}, - [1799] = {.lex_state = 81}, - [1800] = {.lex_state = 81}, - [1801] = {.lex_state = 48}, - [1802] = {.lex_state = 81}, - [1803] = {.lex_state = 81}, - [1804] = {.lex_state = 81}, - [1805] = {.lex_state = 47}, - [1806] = {.lex_state = 45}, - [1807] = {.lex_state = 81}, - [1808] = {.lex_state = 81}, - [1809] = {.lex_state = 48}, - [1810] = {.lex_state = 216}, - [1811] = {.lex_state = 48}, - [1812] = {.lex_state = 81}, - [1813] = {.lex_state = 44}, - [1814] = {.lex_state = 81}, - [1815] = {.lex_state = 81}, - [1816] = {.lex_state = 81}, - [1817] = {.lex_state = 48}, - [1818] = {.lex_state = 81}, - [1819] = {.lex_state = 48}, - [1820] = {.lex_state = 44}, - [1821] = {.lex_state = 48}, - [1822] = {.lex_state = 48}, - [1823] = {.lex_state = 44}, - [1824] = {.lex_state = 81}, - [1825] = {.lex_state = 44}, - [1826] = {.lex_state = 81}, - [1827] = {.lex_state = 81}, - [1828] = {.lex_state = 81}, - [1829] = {.lex_state = 81}, - [1830] = {.lex_state = 81}, - [1831] = {.lex_state = 8}, - [1832] = {.lex_state = 81}, - [1833] = {.lex_state = 81}, - [1834] = {.lex_state = 216}, - [1835] = {.lex_state = 44}, - [1836] = {.lex_state = 11}, - [1837] = {.lex_state = 81}, - [1838] = {.lex_state = 81}, - [1839] = {.lex_state = 32}, - [1840] = {.lex_state = 32}, - [1841] = {.lex_state = 216}, - [1842] = {.lex_state = 32}, - [1843] = {.lex_state = 31}, - [1844] = {.lex_state = 14}, - [1845] = {.lex_state = 2}, - [1846] = {.lex_state = 32}, - [1847] = {.lex_state = 2}, - [1848] = {.lex_state = 32}, - [1849] = {.lex_state = 32}, - [1850] = {.lex_state = 32}, - [1851] = {.lex_state = 32}, - [1852] = {.lex_state = 32}, - [1853] = {.lex_state = 51}, - [1854] = {.lex_state = 32}, - [1855] = {.lex_state = 30}, - [1856] = {.lex_state = 32}, - [1857] = {.lex_state = 29}, - [1858] = {.lex_state = 2}, - [1859] = {.lex_state = 32}, - [1860] = {.lex_state = 32}, - [1861] = {.lex_state = 30}, - [1862] = {.lex_state = 49}, - [1863] = {.lex_state = 30}, - [1864] = {.lex_state = 216}, - [1865] = {.lex_state = 30}, - [1866] = {.lex_state = 30}, - [1867] = {.lex_state = 32}, - [1868] = {.lex_state = 30}, - [1869] = {.lex_state = 30}, - [1870] = {.lex_state = 30}, - [1871] = {.lex_state = 30}, - [1872] = {.lex_state = 30}, - [1873] = {.lex_state = 31}, - [1874] = {.lex_state = 30}, - [1875] = {.lex_state = 31}, - [1876] = {.lex_state = 31}, - [1877] = {.lex_state = 49}, - [1878] = {.lex_state = 31}, - [1879] = {.lex_state = 30}, - [1880] = {.lex_state = 32}, - [1881] = {.lex_state = 49}, - [1882] = {.lex_state = 29}, - [1883] = {.lex_state = 30}, - [1884] = {.lex_state = 31}, - [1885] = {.lex_state = 49}, - [1886] = {.lex_state = 30}, - [1887] = {.lex_state = 30}, - [1888] = {.lex_state = 50}, - [1889] = {.lex_state = 31}, - [1890] = {.lex_state = 31}, - [1891] = {.lex_state = 31}, - [1892] = {.lex_state = 31}, - [1893] = {.lex_state = 31}, - [1894] = {.lex_state = 29}, - [1895] = {.lex_state = 31}, - [1896] = {.lex_state = 49}, - [1897] = {.lex_state = 29}, - [1898] = {.lex_state = 50}, - [1899] = {.lex_state = 29}, - [1900] = {.lex_state = 29}, - [1901] = {.lex_state = 49}, - [1902] = {.lex_state = 49}, - [1903] = {.lex_state = 49}, - [1904] = {.lex_state = 46}, - [1905] = {.lex_state = 49}, - [1906] = {.lex_state = 49}, - [1907] = {.lex_state = 31}, - [1908] = {.lex_state = 31}, - [1909] = {.lex_state = 49}, - [1910] = {.lex_state = 216}, + [1721] = {.lex_state = 49}, + [1722] = {.lex_state = 21}, + [1723] = {.lex_state = 23}, + [1724] = {.lex_state = 87}, + [1725] = {.lex_state = 48}, + [1726] = {.lex_state = 48}, + [1727] = {.lex_state = 311}, + [1728] = {.lex_state = 18}, + [1729] = {.lex_state = 50}, + [1730] = {.lex_state = 48}, + [1731] = {.lex_state = 91}, + [1732] = {.lex_state = 50}, + [1733] = {.lex_state = 23}, + [1734] = {.lex_state = 47}, + [1735] = {.lex_state = 47}, + [1736] = {.lex_state = 91}, + [1737] = {.lex_state = 48}, + [1738] = {.lex_state = 47}, + [1739] = {.lex_state = 18}, + [1740] = {.lex_state = 50}, + [1741] = {.lex_state = 23}, + [1742] = {.lex_state = 22}, + [1743] = {.lex_state = 22}, + [1744] = {.lex_state = 50}, + [1745] = {.lex_state = 22}, + [1746] = {.lex_state = 311}, + [1747] = {.lex_state = 22}, + [1748] = {.lex_state = 92}, + [1749] = {.lex_state = 50}, + [1750] = {.lex_state = 86}, + [1751] = {.lex_state = 18}, + [1752] = {.lex_state = 22}, + [1753] = {.lex_state = 48}, + [1754] = {.lex_state = 87}, + [1755] = {.lex_state = 87}, + [1756] = {.lex_state = 87}, + [1757] = {.lex_state = 93}, + [1758] = {.lex_state = 87}, + [1759] = {.lex_state = 87}, + [1760] = {.lex_state = 91}, + [1761] = {.lex_state = 91}, + [1762] = {.lex_state = 91}, + [1763] = {.lex_state = 23}, + [1764] = {.lex_state = 91}, + [1765] = {.lex_state = 12}, + [1766] = {.lex_state = 93}, + [1767] = {.lex_state = 12}, + [1768] = {.lex_state = 12}, + [1769] = {.lex_state = 12}, + [1770] = {.lex_state = 329}, + [1771] = {.lex_state = 96}, + [1772] = {.lex_state = 92}, + [1773] = {.lex_state = 12}, + [1774] = {.lex_state = 12}, + [1775] = {.lex_state = 67}, + [1776] = {.lex_state = 125}, + [1777] = {.lex_state = 2}, + [1778] = {.lex_state = 2}, + [1779] = {.lex_state = 98}, + [1780] = {.lex_state = 98}, + [1781] = {.lex_state = 126}, + [1782] = {.lex_state = 126}, + [1783] = {.lex_state = 126}, + [1784] = {.lex_state = 97}, + [1785] = {.lex_state = 99}, + [1786] = {.lex_state = 124}, + [1787] = {.lex_state = 99}, + [1788] = {.lex_state = 99}, + [1789] = {.lex_state = 99}, + [1790] = {.lex_state = 99}, + [1791] = {.lex_state = 99}, + [1792] = {.lex_state = 94}, + [1793] = {.lex_state = 311}, + [1794] = {.lex_state = 126}, + [1795] = {.lex_state = 60}, + [1796] = {.lex_state = 60}, + [1797] = {.lex_state = 60}, + [1798] = {.lex_state = 98}, + [1799] = {.lex_state = 58}, + [1800] = {.lex_state = 99}, + [1801] = {.lex_state = 311}, + [1802] = {.lex_state = 98}, + [1803] = {.lex_state = 59}, + [1804] = {.lex_state = 58}, + [1805] = {.lex_state = 59}, + [1806] = {.lex_state = 98}, + [1807] = {.lex_state = 70}, + [1808] = {.lex_state = 57}, + [1809] = {.lex_state = 59}, + [1810] = {.lex_state = 57}, + [1811] = {.lex_state = 124}, + [1812] = {.lex_state = 2}, + [1813] = {.lex_state = 94}, + [1814] = {.lex_state = 57}, + [1815] = {.lex_state = 124}, + [1816] = {.lex_state = 98}, + [1817] = {.lex_state = 125}, + [1818] = {.lex_state = 126}, + [1819] = {.lex_state = 68}, + [1820] = {.lex_state = 2}, + [1821] = {.lex_state = 311}, + [1822] = {.lex_state = 88}, + [1823] = {.lex_state = 69}, + [1824] = {.lex_state = 124}, + [1825] = {.lex_state = 125}, + [1826] = {.lex_state = 124}, + [1827] = {.lex_state = 2}, + [1828] = {.lex_state = 125}, + [1829] = {.lex_state = 125}, + [1830] = {.lex_state = 94}, + [1831] = {.lex_state = 124}, + [1832] = {.lex_state = 24}, + [1833] = {.lex_state = 24}, + [1834] = {.lex_state = 24}, + [1835] = {.lex_state = 58}, + [1836] = {.lex_state = 24}, + [1837] = {.lex_state = 24}, + [1838] = {.lex_state = 24}, + [1839] = {.lex_state = 123}, + [1840] = {.lex_state = 125}, + [1841] = {.lex_state = 123}, + [1842] = {.lex_state = 2}, + [1843] = {.lex_state = 88}, + [1844] = {.lex_state = 88}, + [1845] = {.lex_state = 88}, + [1846] = {.lex_state = 88}, + [1847] = {.lex_state = 88}, + [1848] = {.lex_state = 126}, + [1849] = {.lex_state = 24}, + [1850] = {.lex_state = 88}, + [1851] = {.lex_state = 123}, + [1852] = {.lex_state = 123}, + [1853] = {.lex_state = 98}, + [1854] = {.lex_state = 123}, + [1855] = {.lex_state = 123}, + [1856] = {.lex_state = 143}, + [1857] = {.lex_state = 133}, + [1858] = {.lex_state = 79}, + [1859] = {.lex_state = 135}, + [1860] = {.lex_state = 77}, + [1861] = {.lex_state = 133}, + [1862] = {.lex_state = 133}, + [1863] = {.lex_state = 77}, + [1864] = {.lex_state = 77}, + [1865] = {.lex_state = 77}, + [1866] = {.lex_state = 77}, + [1867] = {.lex_state = 77}, + [1868] = {.lex_state = 100}, + [1869] = {.lex_state = 79}, + [1870] = {.lex_state = 135}, + [1871] = {.lex_state = 79}, + [1872] = {.lex_state = 79}, + [1873] = {.lex_state = 79}, + [1874] = {.lex_state = 79}, + [1875] = {.lex_state = 78}, + [1876] = {.lex_state = 78}, + [1877] = {.lex_state = 78}, + [1878] = {.lex_state = 135}, + [1879] = {.lex_state = 145}, + [1880] = {.lex_state = 78}, + [1881] = {.lex_state = 78}, + [1882] = {.lex_state = 78}, + [1883] = {.lex_state = 80}, + [1884] = {.lex_state = 80}, + [1885] = {.lex_state = 134}, + [1886] = {.lex_state = 80}, + [1887] = {.lex_state = 80}, + [1888] = {.lex_state = 80}, + [1889] = {.lex_state = 80}, + [1890] = {.lex_state = 77}, + [1891] = {.lex_state = 146}, + [1892] = {.lex_state = 79}, + [1893] = {.lex_state = 78}, + [1894] = {.lex_state = 136}, + [1895] = {.lex_state = 136}, + [1896] = {.lex_state = 134}, + [1897] = {.lex_state = 80}, + [1898] = {.lex_state = 134}, + [1899] = {.lex_state = 100}, + [1900] = {.lex_state = 100}, + [1901] = {.lex_state = 144}, + [1902] = {.lex_state = 100}, + [1903] = {.lex_state = 100}, + [1904] = {.lex_state = 136}, + [1905] = {.lex_state = 100}, + [1906] = {.lex_state = 100}, + [1907] = {.lex_state = 156}, + [1908] = {.lex_state = 156}, + [1909] = {.lex_state = 311}, + [1910] = {.lex_state = 2}, [1911] = {.lex_state = 2}, - [1912] = {.lex_state = 31}, - [1913] = {.lex_state = 29}, - [1914] = {.lex_state = 49}, - [1915] = {.lex_state = 29}, - [1916] = {.lex_state = 49}, + [1912] = {.lex_state = 154}, + [1913] = {.lex_state = 153}, + [1914] = {.lex_state = 153}, + [1915] = {.lex_state = 153}, + [1916] = {.lex_state = 153}, [1917] = {.lex_state = 2}, - [1918] = {.lex_state = 31}, - [1919] = {.lex_state = 29}, - [1920] = {.lex_state = 29}, - [1921] = {.lex_state = 46}, - [1922] = {.lex_state = 29}, - [1923] = {.lex_state = 49}, - [1924] = {.lex_state = 2}, - [1925] = {.lex_state = 32}, - [1926] = {.lex_state = 29}, - [1927] = {.lex_state = 30}, - [1928] = {.lex_state = 29}, - [1929] = {.lex_state = 49}, - [1930] = {.lex_state = 14}, - [1931] = {.lex_state = 29}, - [1932] = {.lex_state = 49}, - [1933] = {.lex_state = 29}, - [1934] = {.lex_state = 29}, - [1935] = {.lex_state = 51}, - [1936] = {.lex_state = 52}, - [1937] = {.lex_state = 68}, - [1938] = {.lex_state = 70}, - [1939] = {.lex_state = 67}, - [1940] = {.lex_state = 69}, - [1941] = {.lex_state = 67}, - [1942] = {.lex_state = 70}, - [1943] = {.lex_state = 70}, - [1944] = {.lex_state = 70}, - [1945] = {.lex_state = 70}, - [1946] = {.lex_state = 68}, - [1947] = {.lex_state = 68}, - [1948] = {.lex_state = 70}, - [1949] = {.lex_state = 68}, - [1950] = {.lex_state = 68}, - [1951] = {.lex_state = 68}, - [1952] = {.lex_state = 69}, - [1953] = {.lex_state = 69}, - [1954] = {.lex_state = 68}, - [1955] = {.lex_state = 67}, - [1956] = {.lex_state = 70}, - [1957] = {.lex_state = 67}, - [1958] = {.lex_state = 70}, - [1959] = {.lex_state = 68}, - [1960] = {.lex_state = 70}, - [1961] = {.lex_state = 67}, - [1962] = {.lex_state = 68}, - [1963] = {.lex_state = 67}, - [1964] = {.lex_state = 68}, - [1965] = {.lex_state = 69}, - [1966] = {.lex_state = 70}, - [1967] = {.lex_state = 69}, - [1968] = {.lex_state = 67}, - [1969] = {.lex_state = 70}, - [1970] = {.lex_state = 67}, - [1971] = {.lex_state = 67}, - [1972] = {.lex_state = 39}, - [1973] = {.lex_state = 68}, - [1974] = {.lex_state = 68}, - [1975] = {.lex_state = 42}, - [1976] = {.lex_state = 68}, - [1977] = {.lex_state = 67}, - [1978] = {.lex_state = 40}, - [1979] = {.lex_state = 69}, - [1980] = {.lex_state = 68}, - [1981] = {.lex_state = 67}, - [1982] = {.lex_state = 67}, - [1983] = {.lex_state = 67}, - [1984] = {.lex_state = 41}, - [1985] = {.lex_state = 67}, - [1986] = {.lex_state = 70}, - [1987] = {.lex_state = 69}, - [1988] = {.lex_state = 69}, - [1989] = {.lex_state = 70}, - [1990] = {.lex_state = 39}, - [1991] = {.lex_state = 70}, - [1992] = {.lex_state = 69}, - [1993] = {.lex_state = 67}, - [1994] = {.lex_state = 40}, - [1995] = {.lex_state = 69}, - [1996] = {.lex_state = 70}, - [1997] = {.lex_state = 67}, - [1998] = {.lex_state = 68}, + [1918] = {.lex_state = 153}, + [1919] = {.lex_state = 153}, + [1920] = {.lex_state = 155}, + [1921] = {.lex_state = 155}, + [1922] = {.lex_state = 155}, + [1923] = {.lex_state = 2}, + [1924] = {.lex_state = 155}, + [1925] = {.lex_state = 155}, + [1926] = {.lex_state = 154}, + [1927] = {.lex_state = 154}, + [1928] = {.lex_state = 154}, + [1929] = {.lex_state = 154}, + [1930] = {.lex_state = 153}, + [1931] = {.lex_state = 154}, + [1932] = {.lex_state = 156}, + [1933] = {.lex_state = 156}, + [1934] = {.lex_state = 154}, + [1935] = {.lex_state = 155}, + [1936] = {.lex_state = 156}, + [1937] = {.lex_state = 156}, + [1938] = {.lex_state = 155}, + [1939] = {.lex_state = 156}, + [1940] = {.lex_state = 2}, + [1941] = {.lex_state = 2}, + [1942] = {.lex_state = 2}, + [1943] = {.lex_state = 2}, + [1944] = {.lex_state = 2}, + [1945] = {.lex_state = 2}, + [1946] = {.lex_state = 2}, + [1947] = {.lex_state = 2}, + [1948] = {.lex_state = 2}, + [1949] = {.lex_state = 2}, + [1950] = {.lex_state = 2}, + [1951] = {.lex_state = 2}, + [1952] = {.lex_state = 2}, + [1953] = {.lex_state = 2}, + [1954] = {.lex_state = 2}, + [1955] = {.lex_state = 2}, + [1956] = {.lex_state = 2}, + [1957] = {.lex_state = 2}, + [1958] = {.lex_state = 2}, + [1959] = {.lex_state = 2}, + [1960] = {.lex_state = 2}, + [1961] = {.lex_state = 2}, + [1962] = {.lex_state = 2}, + [1963] = {.lex_state = 2}, + [1964] = {.lex_state = 2}, + [1965] = {.lex_state = 2}, + [1966] = {.lex_state = 2}, + [1967] = {.lex_state = 311}, + [1968] = {.lex_state = 2}, + [1969] = {.lex_state = 2}, + [1970] = {.lex_state = 2}, + [1971] = {.lex_state = 2}, + [1972] = {.lex_state = 2}, + [1973] = {.lex_state = 2}, + [1974] = {.lex_state = 2}, + [1975] = {.lex_state = 2}, + [1976] = {.lex_state = 2}, + [1977] = {.lex_state = 2}, + [1978] = {.lex_state = 2}, + [1979] = {.lex_state = 2}, + [1980] = {.lex_state = 2}, + [1981] = {.lex_state = 2}, + [1982] = {.lex_state = 2}, + [1983] = {.lex_state = 2}, + [1984] = {.lex_state = 2}, + [1985] = {.lex_state = 2}, + [1986] = {.lex_state = 2}, + [1987] = {.lex_state = 2}, + [1988] = {.lex_state = 2}, + [1989] = {.lex_state = 2}, + [1990] = {.lex_state = 2}, + [1991] = {.lex_state = 2}, + [1992] = {.lex_state = 2}, + [1993] = {.lex_state = 2}, + [1994] = {.lex_state = 2}, + [1995] = {.lex_state = 2}, + [1996] = {.lex_state = 2}, + [1997] = {.lex_state = 2}, + [1998] = {.lex_state = 2}, [1999] = {.lex_state = 2}, - [2000] = {.lex_state = 70}, - [2001] = {.lex_state = 52}, - [2002] = {.lex_state = 69}, - [2003] = {.lex_state = 69}, - [2004] = {.lex_state = 68}, - [2005] = {.lex_state = 69}, - [2006] = {.lex_state = 42}, - [2007] = {.lex_state = 69}, - [2008] = {.lex_state = 41}, - [2009] = {.lex_state = 69}, - [2010] = {.lex_state = 69}, - [2011] = {.lex_state = 79}, - [2012] = {.lex_state = 80}, - [2013] = {.lex_state = 77}, + [2000] = {.lex_state = 2}, + [2001] = {.lex_state = 2}, + [2002] = {.lex_state = 2}, + [2003] = {.lex_state = 2}, + [2004] = {.lex_state = 2}, + [2005] = {.lex_state = 2}, + [2006] = {.lex_state = 2}, + [2007] = {.lex_state = 2}, + [2008] = {.lex_state = 2}, + [2009] = {.lex_state = 2}, + [2010] = {.lex_state = 2}, + [2011] = {.lex_state = 2}, + [2012] = {.lex_state = 2}, + [2013] = {.lex_state = 2}, [2014] = {.lex_state = 2}, - [2015] = {.lex_state = 79}, - [2016] = {.lex_state = 78}, + [2015] = {.lex_state = 2}, + [2016] = {.lex_state = 2}, [2017] = {.lex_state = 2}, - [2018] = {.lex_state = 78}, + [2018] = {.lex_state = 2}, [2019] = {.lex_state = 2}, [2020] = {.lex_state = 2}, - [2021] = {.lex_state = 80}, - [2022] = {.lex_state = 77}, - [2023] = {.lex_state = 216}, - [2024] = {.lex_state = 2}, - [2025] = {.lex_state = 2}, - [2026] = {.lex_state = 2}, - [2027] = {.lex_state = 2}, - [2028] = {.lex_state = 2}, + [2021] = {.lex_state = 2}, + [2022] = {.lex_state = 311}, + [2023] = {.lex_state = 311}, + [2024] = {.lex_state = 311}, + [2025] = {.lex_state = 311}, + [2026] = {.lex_state = 311}, + [2027] = {.lex_state = 311}, + [2028] = {.lex_state = 311}, [2029] = {.lex_state = 2}, - [2030] = {.lex_state = 2}, - [2031] = {.lex_state = 2}, + [2030] = {.lex_state = 311}, + [2031] = {.lex_state = 311}, [2032] = {.lex_state = 2}, - [2033] = {.lex_state = 2}, - [2034] = {.lex_state = 2}, - [2035] = {.lex_state = 2}, + [2033] = {.lex_state = 311}, + [2034] = {.lex_state = 311}, + [2035] = {.lex_state = 311}, [2036] = {.lex_state = 2}, [2037] = {.lex_state = 2}, [2038] = {.lex_state = 2}, [2039] = {.lex_state = 2}, - [2040] = {.lex_state = 2}, + [2040] = {.lex_state = 4}, [2041] = {.lex_state = 2}, - [2042] = {.lex_state = 2}, + [2042] = {.lex_state = 4}, [2043] = {.lex_state = 2}, - [2044] = {.lex_state = 2}, + [2044] = {.lex_state = 4}, [2045] = {.lex_state = 2}, [2046] = {.lex_state = 2}, [2047] = {.lex_state = 2}, - [2048] = {.lex_state = 216}, - [2049] = {.lex_state = 2}, - [2050] = {.lex_state = 216}, - [2051] = {.lex_state = 216}, - [2052] = {.lex_state = 216}, - [2053] = {.lex_state = 216}, - [2054] = {.lex_state = 216}, - [2055] = {.lex_state = 216}, - [2056] = {.lex_state = 216}, - [2057] = {.lex_state = 216}, - [2058] = {.lex_state = 216}, + [2048] = {.lex_state = 2}, + [2049] = {.lex_state = 311}, + [2050] = {.lex_state = 4}, + [2051] = {.lex_state = 4}, + [2052] = {.lex_state = 2}, + [2053] = {.lex_state = 2}, + [2054] = {.lex_state = 2}, + [2055] = {.lex_state = 4}, + [2056] = {.lex_state = 2}, + [2057] = {.lex_state = 2}, + [2058] = {.lex_state = 2}, [2059] = {.lex_state = 2}, - [2060] = {.lex_state = 216}, - [2061] = {.lex_state = 216}, - [2062] = {.lex_state = 216}, - [2063] = {.lex_state = 2}, + [2060] = {.lex_state = 2}, + [2061] = {.lex_state = 4}, + [2062] = {.lex_state = 4}, + [2063] = {.lex_state = 4}, [2064] = {.lex_state = 2}, [2065] = {.lex_state = 2}, - [2066] = {.lex_state = 2}, - [2067] = {.lex_state = 2}, + [2066] = {.lex_state = 4}, + [2067] = {.lex_state = 4}, [2068] = {.lex_state = 2}, [2069] = {.lex_state = 2}, - [2070] = {.lex_state = 2}, + [2070] = {.lex_state = 4}, [2071] = {.lex_state = 2}, - [2072] = {.lex_state = 2}, + [2072] = {.lex_state = 4}, [2073] = {.lex_state = 2}, [2074] = {.lex_state = 2}, [2075] = {.lex_state = 2}, - [2076] = {.lex_state = 2}, - [2077] = {.lex_state = 2}, - [2078] = {.lex_state = 2}, + [2076] = {.lex_state = 4}, + [2077] = {.lex_state = 4}, + [2078] = {.lex_state = 4}, [2079] = {.lex_state = 2}, [2080] = {.lex_state = 2}, - [2081] = {.lex_state = 2}, - [2082] = {.lex_state = 2}, - [2083] = {.lex_state = 2}, + [2081] = {.lex_state = 4}, + [2082] = {.lex_state = 4}, + [2083] = {.lex_state = 4}, [2084] = {.lex_state = 2}, [2085] = {.lex_state = 2}, [2086] = {.lex_state = 2}, - [2087] = {.lex_state = 2}, - [2088] = {.lex_state = 2}, + [2087] = {.lex_state = 4}, + [2088] = {.lex_state = 4}, [2089] = {.lex_state = 2}, - [2090] = {.lex_state = 2}, + [2090] = {.lex_state = 4}, [2091] = {.lex_state = 2}, [2092] = {.lex_state = 2}, - [2093] = {.lex_state = 2}, - [2094] = {.lex_state = 2}, + [2093] = {.lex_state = 4}, + [2094] = {.lex_state = 4}, [2095] = {.lex_state = 2}, - [2096] = {.lex_state = 2}, + [2096] = {.lex_state = 4}, [2097] = {.lex_state = 2}, - [2098] = {.lex_state = 81}, - [2099] = {.lex_state = 2}, - [2100] = {.lex_state = 2}, - [2101] = {.lex_state = 2}, + [2098] = {.lex_state = 2}, + [2099] = {.lex_state = 4}, + [2100] = {.lex_state = 4}, + [2101] = {.lex_state = 4}, [2102] = {.lex_state = 2}, [2103] = {.lex_state = 2}, [2104] = {.lex_state = 2}, [2105] = {.lex_state = 2}, - [2106] = {.lex_state = 2}, - [2107] = {.lex_state = 2}, + [2106] = {.lex_state = 4}, + [2107] = {.lex_state = 4}, [2108] = {.lex_state = 2}, [2109] = {.lex_state = 2}, - [2110] = {.lex_state = 216}, - [2111] = {.lex_state = 2}, + [2110] = {.lex_state = 2}, + [2111] = {.lex_state = 4}, [2112] = {.lex_state = 2}, - [2113] = {.lex_state = 2}, + [2113] = {.lex_state = 4}, [2114] = {.lex_state = 2}, - [2115] = {.lex_state = 2}, - [2116] = {.lex_state = 2}, + [2115] = {.lex_state = 4}, + [2116] = {.lex_state = 4}, [2117] = {.lex_state = 2}, - [2118] = {.lex_state = 2}, + [2118] = {.lex_state = 4}, [2119] = {.lex_state = 2}, [2120] = {.lex_state = 2}, [2121] = {.lex_state = 2}, [2122] = {.lex_state = 2}, - [2123] = {.lex_state = 2}, - [2124] = {.lex_state = 2}, + [2123] = {.lex_state = 4}, + [2124] = {.lex_state = 4}, [2125] = {.lex_state = 2}, - [2126] = {.lex_state = 2}, - [2127] = {.lex_state = 2}, - [2128] = {.lex_state = 2}, + [2126] = {.lex_state = 4}, + [2127] = {.lex_state = 4}, + [2128] = {.lex_state = 4}, [2129] = {.lex_state = 2}, [2130] = {.lex_state = 2}, - [2131] = {.lex_state = 2}, - [2132] = {.lex_state = 2}, - [2133] = {.lex_state = 2}, + [2131] = {.lex_state = 4}, + [2132] = {.lex_state = 4}, + [2133] = {.lex_state = 4}, [2134] = {.lex_state = 2}, [2135] = {.lex_state = 2}, - [2136] = {.lex_state = 2}, - [2137] = {.lex_state = 2}, + [2136] = {.lex_state = 4}, + [2137] = {.lex_state = 311}, [2138] = {.lex_state = 2}, [2139] = {.lex_state = 2}, [2140] = {.lex_state = 2}, - [2141] = {.lex_state = 2}, - [2142] = {.lex_state = 2}, + [2141] = {.lex_state = 4}, + [2142] = {.lex_state = 4}, [2143] = {.lex_state = 2}, [2144] = {.lex_state = 2}, [2145] = {.lex_state = 2}, [2146] = {.lex_state = 2}, - [2147] = {.lex_state = 3}, - [2148] = {.lex_state = 216}, - [2149] = {.lex_state = 216}, - [2150] = {.lex_state = 216}, - [2151] = {.lex_state = 216}, - [2152] = {.lex_state = 216}, - [2153] = {.lex_state = 216}, - [2154] = {.lex_state = 216}, - [2155] = {.lex_state = 216}, - [2156] = {.lex_state = 3}, - [2157] = {.lex_state = 216}, - [2158] = {.lex_state = 216}, - [2159] = {.lex_state = 216}, - [2160] = {.lex_state = 216}, + [2147] = {.lex_state = 4}, + [2148] = {.lex_state = 2}, + [2149] = {.lex_state = 2}, + [2150] = {.lex_state = 2}, + [2151] = {.lex_state = 2}, + [2152] = {.lex_state = 4}, + [2153] = {.lex_state = 2}, + [2154] = {.lex_state = 2}, + [2155] = {.lex_state = 2}, + [2156] = {.lex_state = 2}, + [2157] = {.lex_state = 2}, + [2158] = {.lex_state = 2}, + [2159] = {.lex_state = 4}, + [2160] = {.lex_state = 4}, [2161] = {.lex_state = 2}, - [2162] = {.lex_state = 216}, - [2163] = {.lex_state = 216}, - [2164] = {.lex_state = 216}, - [2165] = {.lex_state = 216}, - [2166] = {.lex_state = 216}, - [2167] = {.lex_state = 216}, - [2168] = {.lex_state = 2}, - [2169] = {.lex_state = 2}, - [2170] = {.lex_state = 216}, - [2171] = {.lex_state = 216}, - [2172] = {.lex_state = 216}, - [2173] = {.lex_state = 216}, - [2174] = {.lex_state = 216}, - [2175] = {.lex_state = 216}, - [2176] = {.lex_state = 216}, - [2177] = {.lex_state = 216}, - [2178] = {.lex_state = 216}, - [2179] = {.lex_state = 216}, - [2180] = {.lex_state = 216}, - [2181] = {.lex_state = 87}, - [2182] = {.lex_state = 216}, + [2162] = {.lex_state = 2}, + [2163] = {.lex_state = 4}, + [2164] = {.lex_state = 2}, + [2165] = {.lex_state = 2}, + [2166] = {.lex_state = 4}, + [2167] = {.lex_state = 4}, + [2168] = {.lex_state = 4}, + [2169] = {.lex_state = 4}, + [2170] = {.lex_state = 2}, + [2171] = {.lex_state = 2}, + [2172] = {.lex_state = 2}, + [2173] = {.lex_state = 2}, + [2174] = {.lex_state = 2}, + [2175] = {.lex_state = 4}, + [2176] = {.lex_state = 2}, + [2177] = {.lex_state = 2}, + [2178] = {.lex_state = 2}, + [2179] = {.lex_state = 311}, + [2180] = {.lex_state = 311}, + [2181] = {.lex_state = 2}, + [2182] = {.lex_state = 311}, [2183] = {.lex_state = 2}, - [2184] = {.lex_state = 2}, - [2185] = {.lex_state = 2}, - [2186] = {.lex_state = 2}, - [2187] = {.lex_state = 2}, + [2184] = {.lex_state = 311}, + [2185] = {.lex_state = 311}, + [2186] = {.lex_state = 311}, + [2187] = {.lex_state = 311}, [2188] = {.lex_state = 2}, - [2189] = {.lex_state = 216}, - [2190] = {.lex_state = 2}, - [2191] = {.lex_state = 2}, + [2189] = {.lex_state = 2}, + [2190] = {.lex_state = 311}, + [2191] = {.lex_state = 311}, [2192] = {.lex_state = 2}, - [2193] = {.lex_state = 216}, + [2193] = {.lex_state = 311}, [2194] = {.lex_state = 2}, - [2195] = {.lex_state = 2}, - [2196] = {.lex_state = 2}, - [2197] = {.lex_state = 2}, - [2198] = {.lex_state = 2}, + [2195] = {.lex_state = 311}, + [2196] = {.lex_state = 311}, + [2197] = {.lex_state = 311}, + [2198] = {.lex_state = 311}, [2199] = {.lex_state = 2}, [2200] = {.lex_state = 2}, - [2201] = {.lex_state = 2}, - [2202] = {.lex_state = 2}, + [2201] = {.lex_state = 311}, + [2202] = {.lex_state = 311}, [2203] = {.lex_state = 2}, [2204] = {.lex_state = 2}, [2205] = {.lex_state = 2}, - [2206] = {.lex_state = 2}, + [2206] = {.lex_state = 311}, [2207] = {.lex_state = 2}, - [2208] = {.lex_state = 2}, - [2209] = {.lex_state = 2}, + [2208] = {.lex_state = 311}, + [2209] = {.lex_state = 311}, [2210] = {.lex_state = 2}, [2211] = {.lex_state = 2}, - [2212] = {.lex_state = 2}, - [2213] = {.lex_state = 2}, + [2212] = {.lex_state = 311}, + [2213] = {.lex_state = 311}, [2214] = {.lex_state = 2}, [2215] = {.lex_state = 2}, [2216] = {.lex_state = 2}, - [2217] = {.lex_state = 2}, - [2218] = {.lex_state = 2}, + [2217] = {.lex_state = 311}, + [2218] = {.lex_state = 311}, [2219] = {.lex_state = 2}, [2220] = {.lex_state = 2}, [2221] = {.lex_state = 2}, - [2222] = {.lex_state = 196}, + [2222] = {.lex_state = 2}, [2223] = {.lex_state = 2}, [2224] = {.lex_state = 2}, [2225] = {.lex_state = 2}, @@ -13404,695 +17001,936 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2229] = {.lex_state = 2}, [2230] = {.lex_state = 2}, [2231] = {.lex_state = 2}, - [2232] = {.lex_state = 216}, - [2233] = {.lex_state = 0}, + [2232] = {.lex_state = 2}, + [2233] = {.lex_state = 2}, [2234] = {.lex_state = 2}, [2235] = {.lex_state = 2}, - [2236] = {.lex_state = 216}, + [2236] = {.lex_state = 2}, [2237] = {.lex_state = 2}, [2238] = {.lex_state = 2}, - [2239] = {.lex_state = 0}, + [2239] = {.lex_state = 2}, [2240] = {.lex_state = 2}, [2241] = {.lex_state = 2}, [2242] = {.lex_state = 2}, - [2243] = {.lex_state = 0}, + [2243] = {.lex_state = 2}, [2244] = {.lex_state = 2}, [2245] = {.lex_state = 2}, [2246] = {.lex_state = 2}, [2247] = {.lex_state = 2}, [2248] = {.lex_state = 2}, - [2249] = {.lex_state = 216}, + [2249] = {.lex_state = 2}, [2250] = {.lex_state = 2}, [2251] = {.lex_state = 2}, [2252] = {.lex_state = 2}, [2253] = {.lex_state = 2}, [2254] = {.lex_state = 2}, [2255] = {.lex_state = 2}, - [2256] = {.lex_state = 216}, - [2257] = {.lex_state = 216}, - [2258] = {.lex_state = 2}, + [2256] = {.lex_state = 2}, + [2257] = {.lex_state = 2}, + [2258] = {.lex_state = 273}, [2259] = {.lex_state = 2}, [2260] = {.lex_state = 2}, [2261] = {.lex_state = 2}, - [2262] = {.lex_state = 2}, + [2262] = {.lex_state = 3}, [2263] = {.lex_state = 2}, [2264] = {.lex_state = 2}, [2265] = {.lex_state = 2}, [2266] = {.lex_state = 2}, - [2267] = {.lex_state = 216}, - [2268] = {.lex_state = 216}, - [2269] = {.lex_state = 216}, - [2270] = {.lex_state = 206}, - [2271] = {.lex_state = 0}, - [2272] = {.lex_state = 0}, - [2273] = {.lex_state = 216}, - [2274] = {.lex_state = 0}, - [2275] = {.lex_state = 216}, - [2276] = {.lex_state = 216}, - [2277] = {.lex_state = 216}, - [2278] = {.lex_state = 216}, - [2279] = {.lex_state = 216}, - [2280] = {.lex_state = 216}, - [2281] = {.lex_state = 216}, - [2282] = {.lex_state = 0}, - [2283] = {.lex_state = 198}, - [2284] = {.lex_state = 0}, - [2285] = {.lex_state = 216}, - [2286] = {.lex_state = 83}, - [2287] = {.lex_state = 216}, - [2288] = {.lex_state = 0}, - [2289] = {.lex_state = 216}, - [2290] = {.lex_state = 216}, - [2291] = {.lex_state = 216}, - [2292] = {.lex_state = 0}, - [2293] = {.lex_state = 0}, - [2294] = {.lex_state = 216}, - [2295] = {.lex_state = 0}, - [2296] = {.lex_state = 216}, - [2297] = {.lex_state = 216}, - [2298] = {.lex_state = 83}, - [2299] = {.lex_state = 216}, - [2300] = {.lex_state = 216}, - [2301] = {.lex_state = 216}, - [2302] = {.lex_state = 216}, - [2303] = {.lex_state = 216}, - [2304] = {.lex_state = 216}, - [2305] = {.lex_state = 216}, - [2306] = {.lex_state = 216}, - [2307] = {.lex_state = 216}, - [2308] = {.lex_state = 216}, - [2309] = {.lex_state = 216}, - [2310] = {.lex_state = 216}, - [2311] = {.lex_state = 216}, - [2312] = {.lex_state = 0}, - [2313] = {.lex_state = 197}, - [2314] = {.lex_state = 216}, - [2315] = {.lex_state = 216}, - [2316] = {.lex_state = 216}, - [2317] = {.lex_state = 224}, - [2318] = {.lex_state = 216}, + [2267] = {.lex_state = 2}, + [2268] = {.lex_state = 2}, + [2269] = {.lex_state = 2}, + [2270] = {.lex_state = 2}, + [2271] = {.lex_state = 2}, + [2272] = {.lex_state = 2}, + [2273] = {.lex_state = 2}, + [2274] = {.lex_state = 2}, + [2275] = {.lex_state = 311}, + [2276] = {.lex_state = 2}, + [2277] = {.lex_state = 2}, + [2278] = {.lex_state = 2}, + [2279] = {.lex_state = 3}, + [2280] = {.lex_state = 2}, + [2281] = {.lex_state = 2}, + [2282] = {.lex_state = 2}, + [2283] = {.lex_state = 2}, + [2284] = {.lex_state = 2}, + [2285] = {.lex_state = 2}, + [2286] = {.lex_state = 2}, + [2287] = {.lex_state = 2}, + [2288] = {.lex_state = 2}, + [2289] = {.lex_state = 2}, + [2290] = {.lex_state = 2}, + [2291] = {.lex_state = 2}, + [2292] = {.lex_state = 2}, + [2293] = {.lex_state = 2}, + [2294] = {.lex_state = 311}, + [2295] = {.lex_state = 2}, + [2296] = {.lex_state = 2}, + [2297] = {.lex_state = 2}, + [2298] = {.lex_state = 2}, + [2299] = {.lex_state = 2}, + [2300] = {.lex_state = 311}, + [2301] = {.lex_state = 2}, + [2302] = {.lex_state = 2}, + [2303] = {.lex_state = 2}, + [2304] = {.lex_state = 2}, + [2305] = {.lex_state = 2}, + [2306] = {.lex_state = 2}, + [2307] = {.lex_state = 2}, + [2308] = {.lex_state = 2}, + [2309] = {.lex_state = 2}, + [2310] = {.lex_state = 311}, + [2311] = {.lex_state = 2}, + [2312] = {.lex_state = 2}, + [2313] = {.lex_state = 2}, + [2314] = {.lex_state = 2}, + [2315] = {.lex_state = 2}, + [2316] = {.lex_state = 311}, + [2317] = {.lex_state = 2}, + [2318] = {.lex_state = 2}, [2319] = {.lex_state = 2}, [2320] = {.lex_state = 2}, - [2321] = {.lex_state = 2}, + [2321] = {.lex_state = 311}, [2322] = {.lex_state = 2}, - [2323] = {.lex_state = 216}, - [2324] = {.lex_state = 207}, + [2323] = {.lex_state = 2}, + [2324] = {.lex_state = 2}, [2325] = {.lex_state = 2}, [2326] = {.lex_state = 2}, [2327] = {.lex_state = 2}, - [2328] = {.lex_state = 0}, + [2328] = {.lex_state = 2}, [2329] = {.lex_state = 2}, [2330] = {.lex_state = 2}, - [2331] = {.lex_state = 0}, + [2331] = {.lex_state = 2}, [2332] = {.lex_state = 2}, [2333] = {.lex_state = 2}, [2334] = {.lex_state = 2}, [2335] = {.lex_state = 2}, - [2336] = {.lex_state = 0}, + [2336] = {.lex_state = 2}, [2337] = {.lex_state = 2}, [2338] = {.lex_state = 2}, [2339] = {.lex_state = 2}, [2340] = {.lex_state = 2}, [2341] = {.lex_state = 2}, [2342] = {.lex_state = 2}, - [2343] = {.lex_state = 216}, - [2344] = {.lex_state = 0}, - [2345] = {.lex_state = 216}, + [2343] = {.lex_state = 2}, + [2344] = {.lex_state = 2}, + [2345] = {.lex_state = 2}, [2346] = {.lex_state = 2}, - [2347] = {.lex_state = 3}, - [2348] = {.lex_state = 216}, - [2349] = {.lex_state = 216}, + [2347] = {.lex_state = 2}, + [2348] = {.lex_state = 2}, + [2349] = {.lex_state = 2}, [2350] = {.lex_state = 2}, [2351] = {.lex_state = 2}, [2352] = {.lex_state = 2}, [2353] = {.lex_state = 2}, - [2354] = {.lex_state = 2}, + [2354] = {.lex_state = 0}, [2355] = {.lex_state = 2}, - [2356] = {.lex_state = 232}, + [2356] = {.lex_state = 2}, [2357] = {.lex_state = 2}, [2358] = {.lex_state = 2}, [2359] = {.lex_state = 2}, [2360] = {.lex_state = 2}, [2361] = {.lex_state = 2}, - [2362] = {.lex_state = 216}, + [2362] = {.lex_state = 2}, [2363] = {.lex_state = 2}, [2364] = {.lex_state = 2}, - [2365] = {.lex_state = 2}, - [2366] = {.lex_state = 0}, + [2365] = {.lex_state = 275}, + [2366] = {.lex_state = 2}, [2367] = {.lex_state = 2}, [2368] = {.lex_state = 2}, [2369] = {.lex_state = 2}, - [2370] = {.lex_state = 0}, - [2371] = {.lex_state = 216}, - [2372] = {.lex_state = 0}, - [2373] = {.lex_state = 2}, + [2370] = {.lex_state = 2}, + [2371] = {.lex_state = 2}, + [2372] = {.lex_state = 2}, + [2373] = {.lex_state = 311}, [2374] = {.lex_state = 2}, [2375] = {.lex_state = 2}, [2376] = {.lex_state = 2}, [2377] = {.lex_state = 2}, [2378] = {.lex_state = 2}, [2379] = {.lex_state = 2}, - [2380] = {.lex_state = 2}, + [2380] = {.lex_state = 274}, [2381] = {.lex_state = 2}, - [2382] = {.lex_state = 2}, - [2383] = {.lex_state = 216}, + [2382] = {.lex_state = 293}, + [2383] = {.lex_state = 279}, [2384] = {.lex_state = 2}, [2385] = {.lex_state = 2}, [2386] = {.lex_state = 2}, [2387] = {.lex_state = 2}, [2388] = {.lex_state = 2}, [2389] = {.lex_state = 2}, - [2390] = {.lex_state = 4}, + [2390] = {.lex_state = 2}, [2391] = {.lex_state = 2}, - [2392] = {.lex_state = 0}, - [2393] = {.lex_state = 216}, - [2394] = {.lex_state = 224}, - [2395] = {.lex_state = 0}, - [2396] = {.lex_state = 208}, - [2397] = {.lex_state = 216}, - [2398] = {.lex_state = 216}, - [2399] = {.lex_state = 216}, - [2400] = {.lex_state = 0}, - [2401] = {.lex_state = 0}, - [2402] = {.lex_state = 0}, - [2403] = {.lex_state = 0}, - [2404] = {.lex_state = 0}, + [2392] = {.lex_state = 311}, + [2393] = {.lex_state = 2}, + [2394] = {.lex_state = 311}, + [2395] = {.lex_state = 311}, + [2396] = {.lex_state = 2}, + [2397] = {.lex_state = 2}, + [2398] = {.lex_state = 2}, + [2399] = {.lex_state = 311}, + [2400] = {.lex_state = 2}, + [2401] = {.lex_state = 2}, + [2402] = {.lex_state = 2}, + [2403] = {.lex_state = 311}, + [2404] = {.lex_state = 2}, [2405] = {.lex_state = 0}, - [2406] = {.lex_state = 216}, - [2407] = {.lex_state = 216}, - [2408] = {.lex_state = 216}, - [2409] = {.lex_state = 216}, - [2410] = {.lex_state = 0}, - [2411] = {.lex_state = 216}, - [2412] = {.lex_state = 0}, - [2413] = {.lex_state = 224}, - [2414] = {.lex_state = 0}, - [2415] = {.lex_state = 0}, - [2416] = {.lex_state = 216}, - [2417] = {.lex_state = 216}, - [2418] = {.lex_state = 0}, - [2419] = {.lex_state = 0}, - [2420] = {.lex_state = 0}, - [2421] = {.lex_state = 216}, - [2422] = {.lex_state = 0}, - [2423] = {.lex_state = 0}, - [2424] = {.lex_state = 0}, - [2425] = {.lex_state = 208}, - [2426] = {.lex_state = 216}, - [2427] = {.lex_state = 198}, - [2428] = {.lex_state = 0}, - [2429] = {.lex_state = 224}, - [2430] = {.lex_state = 216}, + [2406] = {.lex_state = 2}, + [2407] = {.lex_state = 311}, + [2408] = {.lex_state = 2}, + [2409] = {.lex_state = 2}, + [2410] = {.lex_state = 2}, + [2411] = {.lex_state = 0}, + [2412] = {.lex_state = 311}, + [2413] = {.lex_state = 311}, + [2414] = {.lex_state = 311}, + [2415] = {.lex_state = 311}, + [2416] = {.lex_state = 311}, + [2417] = {.lex_state = 311}, + [2418] = {.lex_state = 311}, + [2419] = {.lex_state = 311}, + [2420] = {.lex_state = 311}, + [2421] = {.lex_state = 311}, + [2422] = {.lex_state = 311}, + [2423] = {.lex_state = 311}, + [2424] = {.lex_state = 317}, + [2425] = {.lex_state = 311}, + [2426] = {.lex_state = 311}, + [2427] = {.lex_state = 311}, + [2428] = {.lex_state = 311}, + [2429] = {.lex_state = 311}, + [2430] = {.lex_state = 311}, [2431] = {.lex_state = 0}, - [2432] = {.lex_state = 0}, - [2433] = {.lex_state = 0}, - [2434] = {.lex_state = 0}, - [2435] = {.lex_state = 216}, - [2436] = {.lex_state = 0}, - [2437] = {.lex_state = 216}, - [2438] = {.lex_state = 216}, - [2439] = {.lex_state = 216}, - [2440] = {.lex_state = 216}, - [2441] = {.lex_state = 216}, - [2442] = {.lex_state = 216}, - [2443] = {.lex_state = 0}, - [2444] = {.lex_state = 0}, - [2445] = {.lex_state = 216}, - [2446] = {.lex_state = 216}, - [2447] = {.lex_state = 224}, - [2448] = {.lex_state = 216}, - [2449] = {.lex_state = 216}, - [2450] = {.lex_state = 232}, - [2451] = {.lex_state = 0}, - [2452] = {.lex_state = 0}, + [2432] = {.lex_state = 311}, + [2433] = {.lex_state = 311}, + [2434] = {.lex_state = 311}, + [2435] = {.lex_state = 158}, + [2436] = {.lex_state = 311}, + [2437] = {.lex_state = 311}, + [2438] = {.lex_state = 311}, + [2439] = {.lex_state = 311}, + [2440] = {.lex_state = 311}, + [2441] = {.lex_state = 311}, + [2442] = {.lex_state = 311}, + [2443] = {.lex_state = 311}, + [2444] = {.lex_state = 311}, + [2445] = {.lex_state = 0}, + [2446] = {.lex_state = 276}, + [2447] = {.lex_state = 311}, + [2448] = {.lex_state = 281}, + [2449] = {.lex_state = 311}, + [2450] = {.lex_state = 294}, + [2451] = {.lex_state = 311}, + [2452] = {.lex_state = 158}, [2453] = {.lex_state = 0}, - [2454] = {.lex_state = 0}, - [2455] = {.lex_state = 0}, + [2454] = {.lex_state = 311}, + [2455] = {.lex_state = 299}, [2456] = {.lex_state = 0}, - [2457] = {.lex_state = 4}, + [2457] = {.lex_state = 0}, [2458] = {.lex_state = 0}, - [2459] = {.lex_state = 232}, - [2460] = {.lex_state = 0}, - [2461] = {.lex_state = 232}, - [2462] = {.lex_state = 0}, - [2463] = {.lex_state = 0}, - [2464] = {.lex_state = 0}, + [2459] = {.lex_state = 0}, + [2460] = {.lex_state = 311}, + [2461] = {.lex_state = 0}, + [2462] = {.lex_state = 311}, + [2463] = {.lex_state = 295}, + [2464] = {.lex_state = 280}, [2465] = {.lex_state = 0}, [2466] = {.lex_state = 0}, - [2467] = {.lex_state = 0}, + [2467] = {.lex_state = 2}, [2468] = {.lex_state = 0}, - [2469] = {.lex_state = 0}, - [2470] = {.lex_state = 0}, - [2471] = {.lex_state = 0}, - [2472] = {.lex_state = 0}, - [2473] = {.lex_state = 0}, - [2474] = {.lex_state = 0}, - [2475] = {.lex_state = 0}, - [2476] = {.lex_state = 0}, - [2477] = {.lex_state = 0}, - [2478] = {.lex_state = 0}, - [2479] = {.lex_state = 0}, - [2480] = {.lex_state = 0}, - [2481] = {.lex_state = 0}, - [2482] = {.lex_state = 232}, - [2483] = {.lex_state = 0}, - [2484] = {.lex_state = 0}, - [2485] = {.lex_state = 0}, - [2486] = {.lex_state = 0}, - [2487] = {.lex_state = 0}, - [2488] = {.lex_state = 82}, - [2489] = {.lex_state = 89}, - [2490] = {.lex_state = 216}, - [2491] = {.lex_state = 0}, - [2492] = {.lex_state = 0}, - [2493] = {.lex_state = 0}, + [2469] = {.lex_state = 2}, + [2470] = {.lex_state = 2}, + [2471] = {.lex_state = 2}, + [2472] = {.lex_state = 2}, + [2473] = {.lex_state = 2}, + [2474] = {.lex_state = 2}, + [2475] = {.lex_state = 2}, + [2476] = {.lex_state = 2}, + [2477] = {.lex_state = 2}, + [2478] = {.lex_state = 311}, + [2479] = {.lex_state = 2}, + [2480] = {.lex_state = 311}, + [2481] = {.lex_state = 2}, + [2482] = {.lex_state = 2}, + [2483] = {.lex_state = 311}, + [2484] = {.lex_state = 2}, + [2485] = {.lex_state = 2}, + [2486] = {.lex_state = 2}, + [2487] = {.lex_state = 311}, + [2488] = {.lex_state = 4}, + [2489] = {.lex_state = 2}, + [2490] = {.lex_state = 2}, + [2491] = {.lex_state = 2}, + [2492] = {.lex_state = 2}, + [2493] = {.lex_state = 2}, [2494] = {.lex_state = 0}, - [2495] = {.lex_state = 0}, - [2496] = {.lex_state = 0}, - [2497] = {.lex_state = 216}, - [2498] = {.lex_state = 0}, + [2495] = {.lex_state = 2}, + [2496] = {.lex_state = 2}, + [2497] = {.lex_state = 300}, + [2498] = {.lex_state = 2}, [2499] = {.lex_state = 0}, - [2500] = {.lex_state = 82}, + [2500] = {.lex_state = 2}, [2501] = {.lex_state = 0}, - [2502] = {.lex_state = 0}, - [2503] = {.lex_state = 0}, - [2504] = {.lex_state = 0}, - [2505] = {.lex_state = 0}, - [2506] = {.lex_state = 0}, - [2507] = {.lex_state = 0}, - [2508] = {.lex_state = 486}, - [2509] = {.lex_state = 0}, - [2510] = {.lex_state = 0}, - [2511] = {.lex_state = 0}, - [2512] = {.lex_state = 89}, - [2513] = {.lex_state = 216}, - [2514] = {.lex_state = 0}, - [2515] = {.lex_state = 0}, - [2516] = {.lex_state = 0}, - [2517] = {.lex_state = 0}, - [2518] = {.lex_state = 486}, - [2519] = {.lex_state = 4}, - [2520] = {.lex_state = 216}, - [2521] = {.lex_state = 0}, - [2522] = {.lex_state = 4}, + [2502] = {.lex_state = 311}, + [2503] = {.lex_state = 2}, + [2504] = {.lex_state = 2}, + [2505] = {.lex_state = 2}, + [2506] = {.lex_state = 2}, + [2507] = {.lex_state = 329}, + [2508] = {.lex_state = 162}, + [2509] = {.lex_state = 2}, + [2510] = {.lex_state = 2}, + [2511] = {.lex_state = 2}, + [2512] = {.lex_state = 0}, + [2513] = {.lex_state = 0}, + [2514] = {.lex_state = 2}, + [2515] = {.lex_state = 2}, + [2516] = {.lex_state = 2}, + [2517] = {.lex_state = 2}, + [2518] = {.lex_state = 2}, + [2519] = {.lex_state = 2}, + [2520] = {.lex_state = 311}, + [2521] = {.lex_state = 2}, + [2522] = {.lex_state = 2}, [2523] = {.lex_state = 0}, - [2524] = {.lex_state = 0}, - [2525] = {.lex_state = 82}, - [2526] = {.lex_state = 0}, - [2527] = {.lex_state = 0}, - [2528] = {.lex_state = 486}, - [2529] = {.lex_state = 82}, - [2530] = {.lex_state = 0}, - [2531] = {.lex_state = 0}, - [2532] = {.lex_state = 89}, - [2533] = {.lex_state = 216}, - [2534] = {.lex_state = 0}, - [2535] = {.lex_state = 82}, - [2536] = {.lex_state = 0}, - [2537] = {.lex_state = 82}, - [2538] = {.lex_state = 82}, - [2539] = {.lex_state = 0}, - [2540] = {.lex_state = 216}, - [2541] = {.lex_state = 0}, - [2542] = {.lex_state = 0}, - [2543] = {.lex_state = 0}, - [2544] = {.lex_state = 0}, - [2545] = {.lex_state = 0}, - [2546] = {.lex_state = 0}, - [2547] = {.lex_state = 82}, - [2548] = {.lex_state = 486}, - [2549] = {.lex_state = 82}, - [2550] = {.lex_state = 89}, - [2551] = {.lex_state = 0}, - [2552] = {.lex_state = 0}, + [2524] = {.lex_state = 311}, + [2525] = {.lex_state = 2}, + [2526] = {.lex_state = 2}, + [2527] = {.lex_state = 2}, + [2528] = {.lex_state = 2}, + [2529] = {.lex_state = 296}, + [2530] = {.lex_state = 2}, + [2531] = {.lex_state = 3}, + [2532] = {.lex_state = 2}, + [2533] = {.lex_state = 2}, + [2534] = {.lex_state = 2}, + [2535] = {.lex_state = 2}, + [2536] = {.lex_state = 311}, + [2537] = {.lex_state = 2}, + [2538] = {.lex_state = 2}, + [2539] = {.lex_state = 2}, + [2540] = {.lex_state = 2}, + [2541] = {.lex_state = 2}, + [2542] = {.lex_state = 2}, + [2543] = {.lex_state = 311}, + [2544] = {.lex_state = 2}, + [2545] = {.lex_state = 2}, + [2546] = {.lex_state = 2}, + [2547] = {.lex_state = 2}, + [2548] = {.lex_state = 2}, + [2549] = {.lex_state = 311}, + [2550] = {.lex_state = 2}, + [2551] = {.lex_state = 2}, + [2552] = {.lex_state = 2}, [2553] = {.lex_state = 0}, - [2554] = {.lex_state = 0}, - [2555] = {.lex_state = 486}, - [2556] = {.lex_state = 0}, - [2557] = {.lex_state = 89}, - [2558] = {.lex_state = 82}, + [2554] = {.lex_state = 311}, + [2555] = {.lex_state = 311}, + [2556] = {.lex_state = 317}, + [2557] = {.lex_state = 0}, + [2558] = {.lex_state = 311}, [2559] = {.lex_state = 0}, [2560] = {.lex_state = 0}, - [2561] = {.lex_state = 216}, - [2562] = {.lex_state = 486}, - [2563] = {.lex_state = 0}, - [2564] = {.lex_state = 89}, + [2561] = {.lex_state = 311}, + [2562] = {.lex_state = 311}, + [2563] = {.lex_state = 311}, + [2564] = {.lex_state = 0}, [2565] = {.lex_state = 0}, - [2566] = {.lex_state = 0}, + [2566] = {.lex_state = 311}, [2567] = {.lex_state = 0}, - [2568] = {.lex_state = 0}, - [2569] = {.lex_state = 486}, + [2568] = {.lex_state = 311}, + [2569] = {.lex_state = 0}, [2570] = {.lex_state = 0}, - [2571] = {.lex_state = 89}, - [2572] = {.lex_state = 82}, - [2573] = {.lex_state = 0}, + [2571] = {.lex_state = 0}, + [2572] = {.lex_state = 0}, + [2573] = {.lex_state = 311}, [2574] = {.lex_state = 0}, - [2575] = {.lex_state = 0}, - [2576] = {.lex_state = 486}, - [2577] = {.lex_state = 0}, - [2578] = {.lex_state = 89}, + [2575] = {.lex_state = 311}, + [2576] = {.lex_state = 317}, + [2577] = {.lex_state = 311}, + [2578] = {.lex_state = 0}, [2579] = {.lex_state = 0}, - [2580] = {.lex_state = 0}, - [2581] = {.lex_state = 216}, - [2582] = {.lex_state = 486}, - [2583] = {.lex_state = 82}, - [2584] = {.lex_state = 89}, - [2585] = {.lex_state = 216}, - [2586] = {.lex_state = 82}, + [2580] = {.lex_state = 311}, + [2581] = {.lex_state = 281}, + [2582] = {.lex_state = 0}, + [2583] = {.lex_state = 301}, + [2584] = {.lex_state = 0}, + [2585] = {.lex_state = 311}, + [2586] = {.lex_state = 0}, [2587] = {.lex_state = 0}, - [2588] = {.lex_state = 486}, - [2589] = {.lex_state = 216}, - [2590] = {.lex_state = 89}, - [2591] = {.lex_state = 0}, - [2592] = {.lex_state = 0}, - [2593] = {.lex_state = 486}, - [2594] = {.lex_state = 216}, - [2595] = {.lex_state = 89}, + [2588] = {.lex_state = 311}, + [2589] = {.lex_state = 311}, + [2590] = {.lex_state = 317}, + [2591] = {.lex_state = 317}, + [2592] = {.lex_state = 311}, + [2593] = {.lex_state = 311}, + [2594] = {.lex_state = 311}, + [2595] = {.lex_state = 0}, [2596] = {.lex_state = 0}, - [2597] = {.lex_state = 216}, - [2598] = {.lex_state = 486}, - [2599] = {.lex_state = 82}, - [2600] = {.lex_state = 89}, + [2597] = {.lex_state = 0}, + [2598] = {.lex_state = 311}, + [2599] = {.lex_state = 0}, + [2600] = {.lex_state = 311}, [2601] = {.lex_state = 0}, - [2602] = {.lex_state = 0}, - [2603] = {.lex_state = 486}, - [2604] = {.lex_state = 216}, - [2605] = {.lex_state = 89}, - [2606] = {.lex_state = 0}, - [2607] = {.lex_state = 0}, - [2608] = {.lex_state = 486}, + [2602] = {.lex_state = 311}, + [2603] = {.lex_state = 0}, + [2604] = {.lex_state = 0}, + [2605] = {.lex_state = 328}, + [2606] = {.lex_state = 311}, + [2607] = {.lex_state = 301}, + [2608] = {.lex_state = 311}, [2609] = {.lex_state = 0}, - [2610] = {.lex_state = 89}, - [2611] = {.lex_state = 216}, - [2612] = {.lex_state = 82}, - [2613] = {.lex_state = 486}, + [2610] = {.lex_state = 0}, + [2611] = {.lex_state = 0}, + [2612] = {.lex_state = 0}, + [2613] = {.lex_state = 329}, [2614] = {.lex_state = 0}, - [2615] = {.lex_state = 89}, + [2615] = {.lex_state = 0}, [2616] = {.lex_state = 0}, [2617] = {.lex_state = 0}, - [2618] = {.lex_state = 486}, - [2619] = {.lex_state = 216}, - [2620] = {.lex_state = 89}, + [2618] = {.lex_state = 0}, + [2619] = {.lex_state = 0}, + [2620] = {.lex_state = 0}, [2621] = {.lex_state = 0}, - [2622] = {.lex_state = 82}, - [2623] = {.lex_state = 486}, - [2624] = {.lex_state = 89}, - [2625] = {.lex_state = 89}, + [2622] = {.lex_state = 0}, + [2623] = {.lex_state = 0}, + [2624] = {.lex_state = 4}, + [2625] = {.lex_state = 0}, [2626] = {.lex_state = 0}, - [2627] = {.lex_state = 82}, - [2628] = {.lex_state = 486}, + [2627] = {.lex_state = 0}, + [2628] = {.lex_state = 0}, [2629] = {.lex_state = 0}, - [2630] = {.lex_state = 89}, - [2631] = {.lex_state = 0}, + [2630] = {.lex_state = 0}, + [2631] = {.lex_state = 329}, [2632] = {.lex_state = 0}, - [2633] = {.lex_state = 486}, + [2633] = {.lex_state = 329}, [2634] = {.lex_state = 0}, - [2635] = {.lex_state = 89}, + [2635] = {.lex_state = 0}, [2636] = {.lex_state = 0}, [2637] = {.lex_state = 0}, - [2638] = {.lex_state = 486}, - [2639] = {.lex_state = 82}, - [2640] = {.lex_state = 89}, + [2638] = {.lex_state = 329}, + [2639] = {.lex_state = 0}, + [2640] = {.lex_state = 0}, [2641] = {.lex_state = 0}, [2642] = {.lex_state = 0}, - [2643] = {.lex_state = 486}, + [2643] = {.lex_state = 0}, [2644] = {.lex_state = 0}, - [2645] = {.lex_state = 89}, + [2645] = {.lex_state = 0}, [2646] = {.lex_state = 0}, - [2647] = {.lex_state = 0}, - [2648] = {.lex_state = 486}, - [2649] = {.lex_state = 0}, - [2650] = {.lex_state = 89}, - [2651] = {.lex_state = 82}, - [2652] = {.lex_state = 82}, - [2653] = {.lex_state = 486}, + [2647] = {.lex_state = 590}, + [2648] = {.lex_state = 311}, + [2649] = {.lex_state = 4}, + [2650] = {.lex_state = 0}, + [2651] = {.lex_state = 0}, + [2652] = {.lex_state = 164}, + [2653] = {.lex_state = 0}, [2654] = {.lex_state = 0}, - [2655] = {.lex_state = 89}, - [2656] = {.lex_state = 0}, - [2657] = {.lex_state = 0}, - [2658] = {.lex_state = 486}, - [2659] = {.lex_state = 0}, - [2660] = {.lex_state = 89}, - [2661] = {.lex_state = 486}, + [2655] = {.lex_state = 590}, + [2656] = {.lex_state = 4}, + [2657] = {.lex_state = 157}, + [2658] = {.lex_state = 0}, + [2659] = {.lex_state = 164}, + [2660] = {.lex_state = 0}, + [2661] = {.lex_state = 0}, [2662] = {.lex_state = 0}, - [2663] = {.lex_state = 89}, - [2664] = {.lex_state = 486}, - [2665] = {.lex_state = 0}, - [2666] = {.lex_state = 89}, - [2667] = {.lex_state = 486}, + [2663] = {.lex_state = 590}, + [2664] = {.lex_state = 4}, + [2665] = {.lex_state = 157}, + [2666] = {.lex_state = 164}, + [2667] = {.lex_state = 0}, [2668] = {.lex_state = 0}, - [2669] = {.lex_state = 89}, - [2670] = {.lex_state = 486}, + [2669] = {.lex_state = 590}, + [2670] = {.lex_state = 4}, [2671] = {.lex_state = 0}, - [2672] = {.lex_state = 89}, - [2673] = {.lex_state = 486}, - [2674] = {.lex_state = 0}, - [2675] = {.lex_state = 89}, - [2676] = {.lex_state = 486}, - [2677] = {.lex_state = 216}, - [2678] = {.lex_state = 89}, - [2679] = {.lex_state = 486}, - [2680] = {.lex_state = 0}, - [2681] = {.lex_state = 89}, - [2682] = {.lex_state = 486}, - [2683] = {.lex_state = 0}, - [2684] = {.lex_state = 89}, - [2685] = {.lex_state = 486}, - [2686] = {.lex_state = 0}, - [2687] = {.lex_state = 89}, - [2688] = {.lex_state = 486}, - [2689] = {.lex_state = 0}, - [2690] = {.lex_state = 89}, - [2691] = {.lex_state = 486}, + [2672] = {.lex_state = 0}, + [2673] = {.lex_state = 164}, + [2674] = {.lex_state = 157}, + [2675] = {.lex_state = 0}, + [2676] = {.lex_state = 0}, + [2677] = {.lex_state = 4}, + [2678] = {.lex_state = 164}, + [2679] = {.lex_state = 0}, + [2680] = {.lex_state = 590}, + [2681] = {.lex_state = 4}, + [2682] = {.lex_state = 0}, + [2683] = {.lex_state = 164}, + [2684] = {.lex_state = 590}, + [2685] = {.lex_state = 4}, + [2686] = {.lex_state = 164}, + [2687] = {.lex_state = 157}, + [2688] = {.lex_state = 590}, + [2689] = {.lex_state = 4}, + [2690] = {.lex_state = 0}, + [2691] = {.lex_state = 164}, [2692] = {.lex_state = 0}, - [2693] = {.lex_state = 89}, - [2694] = {.lex_state = 486}, - [2695] = {.lex_state = 0}, - [2696] = {.lex_state = 89}, - [2697] = {.lex_state = 486}, + [2693] = {.lex_state = 0}, + [2694] = {.lex_state = 590}, + [2695] = {.lex_state = 4}, + [2696] = {.lex_state = 157}, + [2697] = {.lex_state = 164}, [2698] = {.lex_state = 0}, - [2699] = {.lex_state = 89}, - [2700] = {.lex_state = 486}, - [2701] = {.lex_state = 82}, - [2702] = {.lex_state = 89}, - [2703] = {.lex_state = 486}, + [2699] = {.lex_state = 0}, + [2700] = {.lex_state = 590}, + [2701] = {.lex_state = 4}, + [2702] = {.lex_state = 0}, + [2703] = {.lex_state = 164}, [2704] = {.lex_state = 0}, - [2705] = {.lex_state = 89}, - [2706] = {.lex_state = 486}, - [2707] = {.lex_state = 0}, - [2708] = {.lex_state = 89}, - [2709] = {.lex_state = 486}, - [2710] = {.lex_state = 0}, - [2711] = {.lex_state = 89}, - [2712] = {.lex_state = 486}, - [2713] = {.lex_state = 0}, - [2714] = {.lex_state = 89}, - [2715] = {.lex_state = 486}, + [2705] = {.lex_state = 164}, + [2706] = {.lex_state = 590}, + [2707] = {.lex_state = 4}, + [2708] = {.lex_state = 0}, + [2709] = {.lex_state = 164}, + [2710] = {.lex_state = 4}, + [2711] = {.lex_state = 590}, + [2712] = {.lex_state = 590}, + [2713] = {.lex_state = 4}, + [2714] = {.lex_state = 157}, + [2715] = {.lex_state = 164}, [2716] = {.lex_state = 0}, - [2717] = {.lex_state = 89}, - [2718] = {.lex_state = 486}, - [2719] = {.lex_state = 82}, - [2720] = {.lex_state = 89}, - [2721] = {.lex_state = 486}, - [2722] = {.lex_state = 0}, - [2723] = {.lex_state = 89}, - [2724] = {.lex_state = 486}, - [2725] = {.lex_state = 216}, - [2726] = {.lex_state = 89}, - [2727] = {.lex_state = 486}, + [2717] = {.lex_state = 0}, + [2718] = {.lex_state = 590}, + [2719] = {.lex_state = 4}, + [2720] = {.lex_state = 0}, + [2721] = {.lex_state = 164}, + [2722] = {.lex_state = 157}, + [2723] = {.lex_state = 0}, + [2724] = {.lex_state = 590}, + [2725] = {.lex_state = 4}, + [2726] = {.lex_state = 0}, + [2727] = {.lex_state = 164}, [2728] = {.lex_state = 0}, - [2729] = {.lex_state = 89}, - [2730] = {.lex_state = 486}, - [2731] = {.lex_state = 82}, - [2732] = {.lex_state = 89}, - [2733] = {.lex_state = 0}, - [2734] = {.lex_state = 0}, - [2735] = {.lex_state = 216}, - [2736] = {.lex_state = 0}, - [2737] = {.lex_state = 0}, + [2729] = {.lex_state = 164}, + [2730] = {.lex_state = 590}, + [2731] = {.lex_state = 4}, + [2732] = {.lex_state = 0}, + [2733] = {.lex_state = 164}, + [2734] = {.lex_state = 4}, + [2735] = {.lex_state = 590}, + [2736] = {.lex_state = 590}, + [2737] = {.lex_state = 4}, [2738] = {.lex_state = 0}, - [2739] = {.lex_state = 0}, - [2740] = {.lex_state = 0}, + [2739] = {.lex_state = 164}, + [2740] = {.lex_state = 157}, [2741] = {.lex_state = 0}, - [2742] = {.lex_state = 0}, - [2743] = {.lex_state = 0}, - [2744] = {.lex_state = 82}, - [2745] = {.lex_state = 0}, + [2742] = {.lex_state = 590}, + [2743] = {.lex_state = 4}, + [2744] = {.lex_state = 0}, + [2745] = {.lex_state = 164}, [2746] = {.lex_state = 0}, - [2747] = {.lex_state = 0}, - [2748] = {.lex_state = 0}, - [2749] = {.lex_state = 0}, - [2750] = {.lex_state = 82}, - [2751] = {.lex_state = 0}, - [2752] = {.lex_state = 0}, + [2747] = {.lex_state = 590}, + [2748] = {.lex_state = 4}, + [2749] = {.lex_state = 157}, + [2750] = {.lex_state = 164}, + [2751] = {.lex_state = 164}, + [2752] = {.lex_state = 590}, [2753] = {.lex_state = 4}, [2754] = {.lex_state = 0}, - [2755] = {.lex_state = 0}, + [2755] = {.lex_state = 164}, [2756] = {.lex_state = 0}, - [2757] = {.lex_state = 0}, - [2758] = {.lex_state = 216}, - [2759] = {.lex_state = 82}, - [2760] = {.lex_state = 0}, - [2761] = {.lex_state = 0}, - [2762] = {.lex_state = 216}, - [2763] = {.lex_state = 0}, - [2764] = {.lex_state = 0}, - [2765] = {.lex_state = 0}, - [2766] = {.lex_state = 82}, - [2767] = {.lex_state = 0}, + [2757] = {.lex_state = 590}, + [2758] = {.lex_state = 4}, + [2759] = {.lex_state = 0}, + [2760] = {.lex_state = 164}, + [2761] = {.lex_state = 4}, + [2762] = {.lex_state = 590}, + [2763] = {.lex_state = 4}, + [2764] = {.lex_state = 590}, + [2765] = {.lex_state = 164}, + [2766] = {.lex_state = 157}, + [2767] = {.lex_state = 590}, [2768] = {.lex_state = 4}, [2769] = {.lex_state = 0}, - [2770] = {.lex_state = 0}, - [2771] = {.lex_state = 486}, - [2772] = {.lex_state = 0}, - [2773] = {.lex_state = 0}, + [2770] = {.lex_state = 164}, + [2771] = {.lex_state = 0}, + [2772] = {.lex_state = 590}, + [2773] = {.lex_state = 4}, [2774] = {.lex_state = 0}, - [2775] = {.lex_state = 0}, + [2775] = {.lex_state = 164}, [2776] = {.lex_state = 0}, - [2777] = {.lex_state = 216}, - [2778] = {.lex_state = 0}, - [2779] = {.lex_state = 0}, - [2780] = {.lex_state = 0}, - [2781] = {.lex_state = 82}, - [2782] = {.lex_state = 216}, - [2783] = {.lex_state = 0}, - [2784] = {.lex_state = 216}, - [2785] = {.lex_state = 216}, - [2786] = {.lex_state = 82}, - [2787] = {.lex_state = 0}, - [2788] = {.lex_state = 0}, - [2789] = {.lex_state = 0}, - [2790] = {.lex_state = 0}, - [2791] = {.lex_state = 0}, - [2792] = {.lex_state = 216}, - [2793] = {.lex_state = 216}, - [2794] = {.lex_state = 0}, - [2795] = {.lex_state = 82}, - [2796] = {.lex_state = 0}, - [2797] = {.lex_state = 0}, - [2798] = {.lex_state = 0}, + [2777] = {.lex_state = 590}, + [2778] = {.lex_state = 4}, + [2779] = {.lex_state = 590}, + [2780] = {.lex_state = 164}, + [2781] = {.lex_state = 0}, + [2782] = {.lex_state = 590}, + [2783] = {.lex_state = 4}, + [2784] = {.lex_state = 0}, + [2785] = {.lex_state = 164}, + [2786] = {.lex_state = 157}, + [2787] = {.lex_state = 590}, + [2788] = {.lex_state = 4}, + [2789] = {.lex_state = 164}, + [2790] = {.lex_state = 164}, + [2791] = {.lex_state = 157}, + [2792] = {.lex_state = 590}, + [2793] = {.lex_state = 4}, + [2794] = {.lex_state = 157}, + [2795] = {.lex_state = 164}, + [2796] = {.lex_state = 4}, + [2797] = {.lex_state = 590}, + [2798] = {.lex_state = 4}, [2799] = {.lex_state = 0}, - [2800] = {.lex_state = 216}, - [2801] = {.lex_state = 216}, - [2802] = {.lex_state = 0}, - [2803] = {.lex_state = 82}, - [2804] = {.lex_state = 0}, - [2805] = {.lex_state = 216}, + [2800] = {.lex_state = 164}, + [2801] = {.lex_state = 0}, + [2802] = {.lex_state = 590}, + [2803] = {.lex_state = 4}, + [2804] = {.lex_state = 311}, + [2805] = {.lex_state = 164}, [2806] = {.lex_state = 0}, - [2807] = {.lex_state = 0}, - [2808] = {.lex_state = 0}, + [2807] = {.lex_state = 590}, + [2808] = {.lex_state = 4}, [2809] = {.lex_state = 0}, - [2810] = {.lex_state = 0}, + [2810] = {.lex_state = 164}, [2811] = {.lex_state = 0}, - [2812] = {.lex_state = 82}, - [2813] = {.lex_state = 0}, + [2812] = {.lex_state = 590}, + [2813] = {.lex_state = 4}, [2814] = {.lex_state = 0}, - [2815] = {.lex_state = 0}, + [2815] = {.lex_state = 164}, [2816] = {.lex_state = 0}, - [2817] = {.lex_state = 0}, - [2818] = {.lex_state = 0}, - [2819] = {.lex_state = 82}, - [2820] = {.lex_state = 0}, - [2821] = {.lex_state = 82}, - [2822] = {.lex_state = 0}, - [2823] = {.lex_state = 0}, - [2824] = {.lex_state = 0}, - [2825] = {.lex_state = 0}, + [2817] = {.lex_state = 590}, + [2818] = {.lex_state = 4}, + [2819] = {.lex_state = 0}, + [2820] = {.lex_state = 164}, + [2821] = {.lex_state = 157}, + [2822] = {.lex_state = 590}, + [2823] = {.lex_state = 4}, + [2824] = {.lex_state = 311}, + [2825] = {.lex_state = 164}, [2826] = {.lex_state = 0}, - [2827] = {.lex_state = 82}, - [2828] = {.lex_state = 0}, - [2829] = {.lex_state = 216}, - [2830] = {.lex_state = 0}, - [2831] = {.lex_state = 0}, - [2832] = {.lex_state = 0}, - [2833] = {.lex_state = 0}, - [2834] = {.lex_state = 0}, - [2835] = {.lex_state = 82}, + [2827] = {.lex_state = 590}, + [2828] = {.lex_state = 4}, + [2829] = {.lex_state = 0}, + [2830] = {.lex_state = 164}, + [2831] = {.lex_state = 157}, + [2832] = {.lex_state = 590}, + [2833] = {.lex_state = 4}, + [2834] = {.lex_state = 311}, + [2835] = {.lex_state = 164}, [2836] = {.lex_state = 0}, - [2837] = {.lex_state = 0}, - [2838] = {.lex_state = 0}, + [2837] = {.lex_state = 590}, + [2838] = {.lex_state = 4}, [2839] = {.lex_state = 0}, - [2840] = {.lex_state = 0}, + [2840] = {.lex_state = 164}, [2841] = {.lex_state = 0}, - [2842] = {.lex_state = 0}, - [2843] = {.lex_state = 0}, - [2844] = {.lex_state = 82}, - [2845] = {.lex_state = 82}, - [2846] = {.lex_state = 0}, - [2847] = {.lex_state = 0}, - [2848] = {.lex_state = 216}, - [2849] = {.lex_state = 0}, - [2850] = {.lex_state = 216}, - [2851] = {.lex_state = 0}, - [2852] = {.lex_state = 0}, - [2853] = {.lex_state = 0}, + [2842] = {.lex_state = 590}, + [2843] = {.lex_state = 4}, + [2844] = {.lex_state = 0}, + [2845] = {.lex_state = 164}, + [2846] = {.lex_state = 311}, + [2847] = {.lex_state = 590}, + [2848] = {.lex_state = 4}, + [2849] = {.lex_state = 157}, + [2850] = {.lex_state = 164}, + [2851] = {.lex_state = 311}, + [2852] = {.lex_state = 590}, + [2853] = {.lex_state = 4}, [2854] = {.lex_state = 0}, - [2855] = {.lex_state = 82}, + [2855] = {.lex_state = 164}, [2856] = {.lex_state = 0}, - [2857] = {.lex_state = 216}, - [2858] = {.lex_state = 0}, - [2859] = {.lex_state = 0}, - [2860] = {.lex_state = 82}, + [2857] = {.lex_state = 590}, + [2858] = {.lex_state = 4}, + [2859] = {.lex_state = 311}, + [2860] = {.lex_state = 164}, [2861] = {.lex_state = 0}, - [2862] = {.lex_state = 0}, - [2863] = {.lex_state = 0}, + [2862] = {.lex_state = 590}, + [2863] = {.lex_state = 4}, [2864] = {.lex_state = 0}, - [2865] = {.lex_state = 0}, + [2865] = {.lex_state = 164}, [2866] = {.lex_state = 0}, - [2867] = {.lex_state = 0}, - [2868] = {.lex_state = 0}, - [2869] = {.lex_state = 82}, - [2870] = {.lex_state = 0}, - [2871] = {.lex_state = 216}, - [2872] = {.lex_state = 0}, - [2873] = {.lex_state = 0}, - [2874] = {.lex_state = 216}, - [2875] = {.lex_state = 0}, - [2876] = {.lex_state = 0}, - [2877] = {.lex_state = 0}, - [2878] = {.lex_state = 82}, - [2879] = {.lex_state = 0}, - [2880] = {.lex_state = 0}, + [2867] = {.lex_state = 590}, + [2868] = {.lex_state = 4}, + [2869] = {.lex_state = 0}, + [2870] = {.lex_state = 164}, + [2871] = {.lex_state = 164}, + [2872] = {.lex_state = 590}, + [2873] = {.lex_state = 4}, + [2874] = {.lex_state = 157}, + [2875] = {.lex_state = 164}, + [2876] = {.lex_state = 4}, + [2877] = {.lex_state = 590}, + [2878] = {.lex_state = 4}, + [2879] = {.lex_state = 590}, + [2880] = {.lex_state = 164}, [2881] = {.lex_state = 0}, - [2882] = {.lex_state = 0}, - [2883] = {.lex_state = 82}, + [2882] = {.lex_state = 590}, + [2883] = {.lex_state = 4}, [2884] = {.lex_state = 0}, - [2885] = {.lex_state = 0}, - [2886] = {.lex_state = 0}, - [2887] = {.lex_state = 0}, - [2888] = {.lex_state = 0}, + [2885] = {.lex_state = 164}, + [2886] = {.lex_state = 311}, + [2887] = {.lex_state = 590}, + [2888] = {.lex_state = 4}, [2889] = {.lex_state = 0}, - [2890] = {.lex_state = 82}, + [2890] = {.lex_state = 164}, [2891] = {.lex_state = 0}, - [2892] = {.lex_state = 0}, - [2893] = {.lex_state = 0}, + [2892] = {.lex_state = 590}, + [2893] = {.lex_state = 4}, [2894] = {.lex_state = 0}, - [2895] = {.lex_state = 82}, - [2896] = {.lex_state = 0}, - [2897] = {.lex_state = 216}, - [2898] = {.lex_state = 0}, - [2899] = {.lex_state = 82}, - [2900] = {.lex_state = 0}, - [2901] = {.lex_state = 0}, - [2902] = {.lex_state = 0}, - [2903] = {.lex_state = 0}, - [2904] = {.lex_state = 0}, - [2905] = {.lex_state = 0}, + [2895] = {.lex_state = 164}, + [2896] = {.lex_state = 311}, + [2897] = {.lex_state = 590}, + [2898] = {.lex_state = 4}, + [2899] = {.lex_state = 0}, + [2900] = {.lex_state = 164}, + [2901] = {.lex_state = 311}, + [2902] = {.lex_state = 590}, + [2903] = {.lex_state = 4}, + [2904] = {.lex_state = 590}, + [2905] = {.lex_state = 4}, [2906] = {.lex_state = 0}, - [2907] = {.lex_state = 82}, + [2907] = {.lex_state = 0}, [2908] = {.lex_state = 0}, - [2909] = {.lex_state = 0}, - [2910] = {.lex_state = 0}, + [2909] = {.lex_state = 157}, + [2910] = {.lex_state = 164}, [2911] = {.lex_state = 0}, - [2912] = {.lex_state = 82}, - [2913] = {.lex_state = 0}, - [2914] = {.lex_state = 0}, + [2912] = {.lex_state = 0}, + [2913] = {.lex_state = 157}, + [2914] = {.lex_state = 4}, [2915] = {.lex_state = 0}, [2916] = {.lex_state = 0}, - [2917] = {.lex_state = 82}, + [2917] = {.lex_state = 590}, [2918] = {.lex_state = 0}, [2919] = {.lex_state = 0}, [2920] = {.lex_state = 0}, + [2921] = {.lex_state = 0}, + [2922] = {.lex_state = 157}, + [2923] = {.lex_state = 311}, + [2924] = {.lex_state = 0}, + [2925] = {.lex_state = 311}, + [2926] = {.lex_state = 0}, + [2927] = {.lex_state = 0}, + [2928] = {.lex_state = 311}, + [2929] = {.lex_state = 311}, + [2930] = {.lex_state = 311}, + [2931] = {.lex_state = 157}, + [2932] = {.lex_state = 164}, + [2933] = {.lex_state = 0}, + [2934] = {.lex_state = 0}, + [2935] = {.lex_state = 0}, + [2936] = {.lex_state = 157}, + [2937] = {.lex_state = 0}, + [2938] = {.lex_state = 4}, + [2939] = {.lex_state = 0}, + [2940] = {.lex_state = 0}, + [2941] = {.lex_state = 0}, + [2942] = {.lex_state = 0}, + [2943] = {.lex_state = 4}, + [2944] = {.lex_state = 590}, + [2945] = {.lex_state = 0}, + [2946] = {.lex_state = 0}, + [2947] = {.lex_state = 0}, + [2948] = {.lex_state = 157}, + [2949] = {.lex_state = 0}, + [2950] = {.lex_state = 311}, + [2951] = {.lex_state = 0}, + [2952] = {.lex_state = 0}, + [2953] = {.lex_state = 157}, + [2954] = {.lex_state = 0}, + [2955] = {.lex_state = 0}, + [2956] = {.lex_state = 0}, + [2957] = {.lex_state = 311}, + [2958] = {.lex_state = 0}, + [2959] = {.lex_state = 0}, + [2960] = {.lex_state = 0}, + [2961] = {.lex_state = 0}, + [2962] = {.lex_state = 0}, + [2963] = {.lex_state = 0}, + [2964] = {.lex_state = 157}, + [2965] = {.lex_state = 0}, + [2966] = {.lex_state = 157}, + [2967] = {.lex_state = 0}, + [2968] = {.lex_state = 157}, + [2969] = {.lex_state = 0}, + [2970] = {.lex_state = 0}, + [2971] = {.lex_state = 0}, + [2972] = {.lex_state = 0}, + [2973] = {.lex_state = 0}, + [2974] = {.lex_state = 0}, + [2975] = {.lex_state = 0}, + [2976] = {.lex_state = 157}, + [2977] = {.lex_state = 0}, + [2978] = {.lex_state = 0}, + [2979] = {.lex_state = 157}, + [2980] = {.lex_state = 0}, + [2981] = {.lex_state = 0}, + [2982] = {.lex_state = 157}, + [2983] = {.lex_state = 0}, + [2984] = {.lex_state = 157}, + [2985] = {.lex_state = 0}, + [2986] = {.lex_state = 0}, + [2987] = {.lex_state = 0}, + [2988] = {.lex_state = 157}, + [2989] = {.lex_state = 0}, + [2990] = {.lex_state = 0}, + [2991] = {.lex_state = 311}, + [2992] = {.lex_state = 0}, + [2993] = {.lex_state = 311}, + [2994] = {.lex_state = 311}, + [2995] = {.lex_state = 311}, + [2996] = {.lex_state = 311}, + [2997] = {.lex_state = 0}, + [2998] = {.lex_state = 0}, + [2999] = {.lex_state = 157}, + [3000] = {.lex_state = 0}, + [3001] = {.lex_state = 0}, + [3002] = {.lex_state = 0}, + [3003] = {.lex_state = 311}, + [3004] = {.lex_state = 0}, + [3005] = {.lex_state = 0}, + [3006] = {.lex_state = 0}, + [3007] = {.lex_state = 311}, + [3008] = {.lex_state = 0}, + [3009] = {.lex_state = 0}, + [3010] = {.lex_state = 157}, + [3011] = {.lex_state = 0}, + [3012] = {.lex_state = 0}, + [3013] = {.lex_state = 0}, + [3014] = {.lex_state = 0}, + [3015] = {.lex_state = 0}, + [3016] = {.lex_state = 157}, + [3017] = {.lex_state = 0}, + [3018] = {.lex_state = 311}, + [3019] = {.lex_state = 0}, + [3020] = {.lex_state = 0}, + [3021] = {.lex_state = 0}, + [3022] = {.lex_state = 0}, + [3023] = {.lex_state = 157}, + [3024] = {.lex_state = 164}, + [3025] = {.lex_state = 0}, + [3026] = {.lex_state = 0}, + [3027] = {.lex_state = 0}, + [3028] = {.lex_state = 0}, + [3029] = {.lex_state = 311}, + [3030] = {.lex_state = 0}, + [3031] = {.lex_state = 0}, + [3032] = {.lex_state = 0}, + [3033] = {.lex_state = 0}, + [3034] = {.lex_state = 0}, + [3035] = {.lex_state = 0}, + [3036] = {.lex_state = 0}, + [3037] = {.lex_state = 0}, + [3038] = {.lex_state = 0}, + [3039] = {.lex_state = 0}, + [3040] = {.lex_state = 157}, + [3041] = {.lex_state = 0}, + [3042] = {.lex_state = 0}, + [3043] = {.lex_state = 0}, + [3044] = {.lex_state = 157}, + [3045] = {.lex_state = 0}, + [3046] = {.lex_state = 0}, + [3047] = {.lex_state = 157}, + [3048] = {.lex_state = 0}, + [3049] = {.lex_state = 0}, + [3050] = {.lex_state = 0}, + [3051] = {.lex_state = 0}, + [3052] = {.lex_state = 0}, + [3053] = {.lex_state = 157}, + [3054] = {.lex_state = 0}, + [3055] = {.lex_state = 0}, + [3056] = {.lex_state = 0}, + [3057] = {.lex_state = 0}, + [3058] = {.lex_state = 0}, + [3059] = {.lex_state = 0}, + [3060] = {.lex_state = 311}, + [3061] = {.lex_state = 0}, + [3062] = {.lex_state = 0}, + [3063] = {.lex_state = 157}, + [3064] = {.lex_state = 0}, + [3065] = {.lex_state = 0}, + [3066] = {.lex_state = 0}, + [3067] = {.lex_state = 0}, + [3068] = {.lex_state = 0}, + [3069] = {.lex_state = 157}, + [3070] = {.lex_state = 0}, + [3071] = {.lex_state = 0}, + [3072] = {.lex_state = 0}, + [3073] = {.lex_state = 0}, + [3074] = {.lex_state = 0}, + [3075] = {.lex_state = 0}, + [3076] = {.lex_state = 0}, + [3077] = {.lex_state = 0}, + [3078] = {.lex_state = 157}, + [3079] = {.lex_state = 0}, + [3080] = {.lex_state = 311}, + [3081] = {.lex_state = 157}, + [3082] = {.lex_state = 0}, + [3083] = {.lex_state = 0}, + [3084] = {.lex_state = 0}, + [3085] = {.lex_state = 0}, + [3086] = {.lex_state = 0}, + [3087] = {.lex_state = 157}, + [3088] = {.lex_state = 311}, + [3089] = {.lex_state = 0}, + [3090] = {.lex_state = 0}, + [3091] = {.lex_state = 0}, + [3092] = {.lex_state = 4}, + [3093] = {.lex_state = 0}, + [3094] = {.lex_state = 0}, + [3095] = {.lex_state = 0}, + [3096] = {.lex_state = 157}, + [3097] = {.lex_state = 0}, + [3098] = {.lex_state = 0}, + [3099] = {.lex_state = 0}, + [3100] = {.lex_state = 0}, + [3101] = {.lex_state = 311}, + [3102] = {.lex_state = 0}, + [3103] = {.lex_state = 0}, + [3104] = {.lex_state = 0}, + [3105] = {.lex_state = 0}, + [3106] = {.lex_state = 157}, + [3107] = {.lex_state = 311}, + [3108] = {.lex_state = 0}, + [3109] = {.lex_state = 0}, + [3110] = {.lex_state = 311}, + [3111] = {.lex_state = 157}, + [3112] = {.lex_state = 4}, + [3113] = {.lex_state = 311}, + [3114] = {.lex_state = 0}, + [3115] = {.lex_state = 0}, + [3116] = {.lex_state = 157}, + [3117] = {.lex_state = 0}, + [3118] = {.lex_state = 590}, + [3119] = {.lex_state = 0}, + [3120] = {.lex_state = 0}, + [3121] = {.lex_state = 0}, + [3122] = {.lex_state = 0}, + [3123] = {.lex_state = 0}, + [3124] = {.lex_state = 0}, + [3125] = {.lex_state = 157}, + [3126] = {.lex_state = 0}, + [3127] = {.lex_state = 0}, + [3128] = {.lex_state = 0}, + [3129] = {.lex_state = 157}, + [3130] = {.lex_state = 0}, + [3131] = {.lex_state = 0}, + [3132] = {.lex_state = 0}, + [3133] = {.lex_state = 0}, + [3134] = {.lex_state = 311}, + [3135] = {.lex_state = 311}, + [3136] = {.lex_state = 157}, + [3137] = {.lex_state = 0}, + [3138] = {.lex_state = 311}, + [3139] = {.lex_state = 0}, + [3140] = {.lex_state = 0}, + [3141] = {.lex_state = 0}, + [3142] = {.lex_state = 0}, + [3143] = {.lex_state = 0}, + [3144] = {.lex_state = 157}, + [3145] = {.lex_state = 0}, + [3146] = {.lex_state = 0}, + [3147] = {.lex_state = 0}, + [3148] = {.lex_state = 0}, + [3149] = {.lex_state = 157}, + [3150] = {.lex_state = 0}, + [3151] = {.lex_state = 0}, + [3152] = {.lex_state = 0}, + [3153] = {.lex_state = 0}, + [3154] = {.lex_state = 0}, + [3155] = {.lex_state = 0}, + [3156] = {.lex_state = 157}, + [3157] = {.lex_state = 0}, + [3158] = {.lex_state = 157}, + [3159] = {.lex_state = 0}, + [3160] = {.lex_state = 0}, + [3161] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -14108,10 +17946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_partition] = ACTIONS(1), [anon_sym_TEST] = ACTIONS(1), [anon_sym_INTERFACE] = ACTIONS(1), - [anon_sym_CORE] = ACTIONS(1), - [anon_sym_LIB] = ACTIONS(1), - [anon_sym_MODULE] = ACTIONS(1), - [anon_sym_EXE] = ACTIONS(1), + [anon_sym_CODE] = ACTIONS(1), [anon_sym_use] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), @@ -14168,18 +18003,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2779), - [sym_source_statement] = STATE(1313), - [sym_namespace] = STATE(1580), - [sym_partition] = STATE(1313), - [sym_import_statement] = STATE(1580), - [sym_alias_definition_statement] = STATE(1580), - [sym__function_declaration_statement] = STATE(1580), - [sym_function_definition_statement] = STATE(1580), - [sym_type_definition_statement] = STATE(1580), - [sym_abstract_type_definition_statement] = STATE(1580), - [sym_typeclass_definition_statement] = STATE(1580), - [aux_sym_source_file_repeat1] = STATE(1313), + [sym_source_file] = STATE(3126), + [sym_source_statement] = STATE(1351), + [sym_namespace] = STATE(1636), + [sym_partition] = STATE(1351), + [sym_import_statement] = STATE(1636), + [sym_alias_definition_statement] = STATE(1636), + [sym__function_declaration_statement] = STATE(1636), + [sym_function_definition_statement] = STATE(1636), + [sym_type_definition_statement] = STATE(1636), + [sym_abstract_type_definition_statement] = STATE(1636), + [sym_typeclass_definition_statement] = STATE(1636), + [aux_sym_source_file_repeat1] = STATE(1351), [anon_sym_namespace] = ACTIONS(7), [anon_sym_partition] = ACTIONS(9), [anon_sym_use] = ACTIONS(11), @@ -14199,45 +18034,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__block_comment] = ACTIONS(3), }, [2] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2913), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3079), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3131), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14269,45 +18104,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(73), }, [3] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2587), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2656), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2717), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14339,115 +18174,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(73), }, [4] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(65), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [5] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3153), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14478,46 +18243,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [6] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [5] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14548,46 +18313,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [7] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [6] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14618,46 +18383,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [8] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [7] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3121), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14688,46 +18453,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, + [8] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3074), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(65), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, [9] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3001), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14759,45 +18594,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(73), }, [10] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14829,45 +18664,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(73), }, [11] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14899,45 +18734,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(73), }, [12] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2515), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2502), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3074), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -14969,45 +18804,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(73), }, [13] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2539), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3042), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15032,52 +18867,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(89), + [sym_operator] = ACTIONS(93), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [14] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2487), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3108), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3146), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15102,52 +18937,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(91), + [sym_operator] = ACTIONS(95), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [15] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2514), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2534), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3012), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15172,52 +19007,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(93), + [sym_operator] = ACTIONS(75), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [16] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2510), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2544), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3117), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3152), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15242,52 +19077,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(95), + [sym_operator] = ACTIONS(97), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [17] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2507), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2551), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2971), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15312,52 +19147,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(97), + [sym_operator] = ACTIONS(99), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [18] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2505), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2565), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2935), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15382,52 +19217,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(99), + [sym_operator] = ACTIONS(101), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [19] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2504), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2575), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3130), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3159), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15452,52 +19287,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(101), + [sym_operator] = ACTIONS(103), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [20] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2499), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2591), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2989), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15522,52 +19357,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(103), + [sym_operator] = ACTIONS(105), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [21] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2524), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2602), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3137), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3151), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15592,52 +19427,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(105), + [sym_operator] = ACTIONS(107), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [22] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2539), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3145), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3160), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15662,52 +19497,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(93), + [sym_operator] = ACTIONS(109), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [23] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2487), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3150), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3072), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15732,52 +19567,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(95), + [sym_operator] = ACTIONS(111), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [24] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2539), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2921), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15802,52 +19637,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(97), + [sym_operator] = ACTIONS(113), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [25] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2487), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3157), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3037), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15872,52 +19707,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(99), + [sym_operator] = ACTIONS(115), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [26] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2530), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2617), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2954), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3013), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -15942,52 +19777,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(107), + [sym_operator] = ACTIONS(117), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [27] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2654), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3153), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3004), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16012,52 +19847,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(101), + [sym_operator] = ACTIONS(77), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [28] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2539), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2908), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16082,52 +19917,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(103), + [sym_operator] = ACTIONS(119), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [29] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2487), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3074), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16152,52 +19987,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(105), + [sym_operator] = ACTIONS(95), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [30] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2559), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2632), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2869), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16222,52 +20057,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(109), + [sym_operator] = ACTIONS(121), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [31] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2573), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2642), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3074), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16292,52 +20127,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(111), + [sym_operator] = ACTIONS(97), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [32] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3121), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2970), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16362,52 +20197,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(107), + [sym_operator] = ACTIONS(83), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [33] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2717), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16432,52 +20267,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(113), + [sym_operator] = ACTIONS(103), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [34] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2601), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2680), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2819), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16502,52 +20337,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(115), + [sym_operator] = ACTIONS(123), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [35] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2654), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2693), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16572,52 +20407,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(109), + [sym_operator] = ACTIONS(125), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [36] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2616), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2707), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16642,52 +20477,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(117), + [sym_operator] = ACTIONS(107), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [37] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2654), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16712,52 +20547,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(111), + [sym_operator] = ACTIONS(109), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [38] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2631), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2737), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2741), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16782,52 +20617,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(119), + [sym_operator] = ACTIONS(127), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [39] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2641), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2747), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16852,52 +20687,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(121), + [sym_operator] = ACTIONS(111), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [40] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2654), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2717), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16922,52 +20757,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(75), + [sym_operator] = ACTIONS(129), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [41] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -16992,52 +20827,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(115), + [sym_operator] = ACTIONS(131), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [42] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3074), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17062,52 +20897,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(117), + [sym_operator] = ACTIONS(115), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [43] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2813), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17132,52 +20967,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(119), + [sym_operator] = ACTIONS(77), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [44] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3042), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2927), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17202,52 +21037,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(121), + [sym_operator] = ACTIONS(93), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [45] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2668), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2757), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2949), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3002), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17272,52 +21107,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(123), + [sym_operator] = ACTIONS(133), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [46] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2704), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2770), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3012), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2920), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17342,52 +21177,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(125), + [sym_operator] = ACTIONS(75), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [47] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2734), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2788), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2971), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2907), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17412,52 +21247,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(127), + [sym_operator] = ACTIONS(99), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [48] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2745), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2797), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2983), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17482,52 +21317,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(129), + [sym_operator] = ACTIONS(135), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [49] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2752), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2807), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17552,52 +21387,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(131), + [sym_operator] = ACTIONS(137), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [50] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2767), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2794), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2935), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2861), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17622,52 +21457,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(133), + [sym_operator] = ACTIONS(101), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [51] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2787), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2823), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2650), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17692,52 +21527,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(83), + [sym_operator] = ACTIONS(139), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [52] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2796), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2831), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17762,52 +21597,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(79), + [sym_operator] = ACTIONS(83), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [53] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2690), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2746), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17832,52 +21667,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(133), + [sym_operator] = ACTIONS(141), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [54] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2813), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2969), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3030), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17902,52 +21737,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(123), + [sym_operator] = ACTIONS(143), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [55] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2813), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2911), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -17972,52 +21807,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(125), + [sym_operator] = ACTIONS(145), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [56] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2804), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2837), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2921), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2816), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18042,52 +21877,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(81), + [sym_operator] = ACTIONS(113), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [57] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2913), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2908), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2776), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18112,52 +21947,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(127), + [sym_operator] = ACTIONS(119), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [58] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2717), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18182,52 +22017,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(129), + [sym_operator] = ACTIONS(93), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [59] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2658), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18252,52 +22087,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(131), + [sym_operator] = ACTIONS(147), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [60] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2778), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2978), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18322,52 +22157,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(77), + [sym_operator] = ACTIONS(149), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [61] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2813), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2667), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18392,52 +22227,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(83), + [sym_operator] = ACTIONS(151), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [62] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3041), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18462,52 +22297,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(79), + [sym_operator] = ACTIONS(153), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [63] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2822), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2847), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3130), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18532,52 +22367,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(135), + [sym_operator] = ACTIONS(103), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [64] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2828), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2863), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3157), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18602,52 +22437,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(65), + [sym_operator] = ACTIONS(115), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [65] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2836), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2872), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3150), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18672,52 +22507,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(77), + [sym_operator] = ACTIONS(111), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [66] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2846), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2885), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2675), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18742,52 +22577,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(85), + [sym_operator] = ACTIONS(155), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [67] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2965), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3019), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18812,52 +22647,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(81), + [sym_operator] = ACTIONS(157), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [68] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2861), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2892), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18882,52 +22717,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(113), + [sym_operator] = ACTIONS(159), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [69] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2870), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2901), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2869), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2738), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -18952,52 +22787,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(137), + [sym_operator] = ACTIONS(121), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [70] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2913), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19022,52 +22857,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(135), + [sym_operator] = ACTIONS(161), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [71] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2884), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2909), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19092,52 +22927,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(139), + [sym_operator] = ACTIONS(163), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [72] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2516), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2495), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2978), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3036), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19162,52 +22997,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(89), + [sym_operator] = ACTIONS(149), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [73] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3089), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3140), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19232,52 +23067,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(135), + [sym_operator] = ACTIONS(87), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [74] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2667), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2692), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19302,52 +23137,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(133), + [sym_operator] = ACTIONS(151), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [75] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3145), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19372,52 +23207,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(137), + [sym_operator] = ACTIONS(109), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [76] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19442,52 +23277,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(85), + [sym_operator] = ACTIONS(141), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [77] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2891), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2914), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2911), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19512,52 +23347,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(141), + [sym_operator] = ACTIONS(99), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [78] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2900), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2919), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19582,52 +23417,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(143), + [sym_operator] = ACTIONS(101), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [79] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2908), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2904), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2819), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2708), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19652,52 +23487,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(145), + [sym_operator] = ACTIONS(123), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [80] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2913), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2693), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2651), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19722,52 +23557,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(113), + [sym_operator] = ACTIONS(125), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [81] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2690), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19792,52 +23627,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(137), + [sym_operator] = ACTIONS(141), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [82] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2881), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2934), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19862,52 +23697,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(139), + [sym_operator] = ACTIONS(163), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [83] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2918), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2888), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2716), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -19932,52 +23767,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(147), + [sym_operator] = ACTIONS(161), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [84] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2778), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2744), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20002,52 +23837,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(141), + [sym_operator] = ACTIONS(159), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [85] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3137), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20072,52 +23907,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(143), + [sym_operator] = ACTIONS(107), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [86] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2741), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2660), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20142,52 +23977,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(145), + [sym_operator] = ACTIONS(127), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [87] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2905), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2876), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20212,52 +24047,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(149), + [sym_operator] = ACTIONS(155), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [88] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3035), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20282,52 +24117,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(131), + [sym_operator] = ACTIONS(165), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [89] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3011), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20352,52 +24187,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(129), + [sym_operator] = ACTIONS(167), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [90] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20422,52 +24257,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(139), + [sym_operator] = ACTIONS(151), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [91] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3097), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20492,52 +24327,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(151), + [sym_operator] = ACTIONS(169), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [92] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20562,52 +24397,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(127), + [sym_operator] = ACTIONS(171), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [93] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3097), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20632,52 +24467,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(153), + [sym_operator] = ACTIONS(173), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [94] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3117), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20702,52 +24537,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(125), + [sym_operator] = ACTIONS(97), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, [95] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3071), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3124), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -20772,3754 +24607,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_name_identifier] = ACTIONS(61), [sym_type_identifier] = ACTIONS(63), [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(123), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [96] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(141), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [97] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2893), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2849), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(155), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [98] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(157), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [99] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(121), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [100] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2877), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2811), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(159), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [101] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(147), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [102] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(119), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [103] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(117), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [104] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2854), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2769), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(161), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [105] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(143), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [106] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2817), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2686), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(163), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [107] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2780), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2574), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(165), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [108] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(167), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [109] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(115), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [110] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(151), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [111] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(75), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [112] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2695), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2498), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(167), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [113] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(165), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [114] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2579), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2543), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(157), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [115] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(145), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [116] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(111), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [117] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2496), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2629), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(153), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [118] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2778), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(149), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [119] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(155), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [120] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2542), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2790), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(87), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [121] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(159), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [122] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2614), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2862), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(151), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [123] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(147), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [124] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(161), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [125] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(149), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [126] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(163), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [127] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(109), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [128] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(165), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [129] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(107), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [130] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(167), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [131] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(105), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [132] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(103), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [133] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(163), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [134] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(101), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [135] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2778), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(157), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [136] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(99), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [137] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(155), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [138] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(97), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [139] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(161), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [140] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2570), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(153), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [141] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(95), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [142] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(93), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [143] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(91), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [144] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(159), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [145] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2853), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_parametrized_type] = STATE(2491), - [sym_type_expression] = STATE(209), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1404), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(63), - [sym_abstract_type_identifier] = ACTIONS(63), - [sym_operator] = ACTIONS(87), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [146] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2755), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [147] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2896), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(137), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [148] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2834), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), [sym_operator] = ACTIONS(81), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [149] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2843), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [96] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3097), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -24542,2296 +24675,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(135), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [150] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2858), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(65), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [151] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(1741), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(1608), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(580), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1330), - [sym_string_literal] = STATE(1302), - [sym_char_literal] = STATE(1302), - [sym_literal] = STATE(1330), - [aux_sym_reference_expression_repeat1] = STATE(2191), - [aux_sym_tuple_expression_repeat1] = STATE(1586), - [aux_sym_variant_expression_repeat1] = STATE(1584), - [aux_sym_name_expression_repeat1] = STATE(1442), - [aux_sym_name_expression_repeat2] = STATE(1721), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(177), - [anon_sym_match] = ACTIONS(179), - [anon_sym_if] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_while] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_loop] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(199), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(201), - [sym_float_number_literal] = ACTIONS(203), - [sym_number_literal] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - }, - [152] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2492), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(91), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [153] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2866), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(77), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [154] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(1741), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(1600), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(580), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1330), - [sym_string_literal] = STATE(1302), - [sym_char_literal] = STATE(1302), - [sym_literal] = STATE(1330), - [aux_sym_reference_expression_repeat1] = STATE(2191), - [aux_sym_tuple_expression_repeat1] = STATE(1586), - [aux_sym_variant_expression_repeat1] = STATE(1584), - [aux_sym_name_expression_repeat1] = STATE(1442), - [aux_sym_name_expression_repeat2] = STATE(1721), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(175), - [anon_sym_PIPE] = ACTIONS(177), - [anon_sym_match] = ACTIONS(179), - [anon_sym_if] = ACTIONS(181), - [anon_sym_do] = ACTIONS(183), - [anon_sym_while] = ACTIONS(185), - [anon_sym_for] = ACTIONS(187), - [anon_sym_loop] = ACTIONS(189), - [anon_sym_TILDE] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(191), - [anon_sym_return] = ACTIONS(193), - [anon_sym_DOLLAR] = ACTIONS(195), - [anon_sym_BSLASH] = ACTIONS(197), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(199), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(201), - [sym_float_number_literal] = ACTIONS(203), - [sym_number_literal] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [anon_sym_SQUOTE] = ACTIONS(209), - }, - [155] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2826), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(79), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [156] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2493), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(93), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [157] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2881), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(85), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [158] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(1645), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(1608), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(574), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1257), - [sym_string_literal] = STATE(1259), - [sym_char_literal] = STATE(1259), - [sym_literal] = STATE(1257), - [aux_sym_reference_expression_repeat1] = STATE(2211), - [aux_sym_tuple_expression_repeat1] = STATE(1524), - [aux_sym_variant_expression_repeat1] = STATE(1520), - [aux_sym_name_expression_repeat1] = STATE(1396), - [aux_sym_name_expression_repeat2] = STATE(1688), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(215), - [anon_sym_match] = ACTIONS(217), - [anon_sym_if] = ACTIONS(219), - [anon_sym_do] = ACTIONS(221), - [anon_sym_while] = ACTIONS(223), - [anon_sym_for] = ACTIONS(225), - [anon_sym_loop] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(229), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_return] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH] = ACTIONS(235), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(237), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(239), - [sym_float_number_literal] = ACTIONS(241), - [sym_number_literal] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - }, - [159] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2527), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(95), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [160] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2832), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [161] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2820), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(83), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [162] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2546), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(97), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [163] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2791), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(161), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [164] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2825), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(159), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [165] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2839), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(249), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [166] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2889), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(113), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [167] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2810), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(133), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [168] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2554), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(99), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [169] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2501), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(89), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [170] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(1711), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(1841), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(581), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1335), - [sym_string_literal] = STATE(1334), - [sym_char_literal] = STATE(1334), - [sym_literal] = STATE(1335), - [aux_sym_reference_expression_repeat1] = STATE(2255), - [aux_sym_tuple_expression_repeat1] = STATE(1606), - [aux_sym_variant_expression_repeat1] = STATE(1607), - [aux_sym_name_expression_repeat1] = STATE(1400), - [aux_sym_name_expression_repeat2] = STATE(1678), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PIPE] = ACTIONS(255), - [anon_sym_match] = ACTIONS(257), - [anon_sym_if] = ACTIONS(259), - [anon_sym_do] = ACTIONS(261), - [anon_sym_while] = ACTIONS(263), - [anon_sym_for] = ACTIONS(265), - [anon_sym_loop] = ACTIONS(267), - [anon_sym_TILDE] = ACTIONS(269), - [anon_sym_AT] = ACTIONS(269), - [anon_sym_return] = ACTIONS(271), - [anon_sym_DOLLAR] = ACTIONS(273), - [anon_sym_BSLASH] = ACTIONS(275), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(277), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(279), - [sym_float_number_literal] = ACTIONS(281), - [sym_number_literal] = ACTIONS(283), - [anon_sym_DQUOTE] = ACTIONS(285), - [anon_sym_SQUOTE] = ACTIONS(287), - }, - [171] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(1645), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(1600), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(574), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1257), - [sym_string_literal] = STATE(1259), - [sym_char_literal] = STATE(1259), - [sym_literal] = STATE(1257), - [aux_sym_reference_expression_repeat1] = STATE(2211), - [aux_sym_tuple_expression_repeat1] = STATE(1524), - [aux_sym_variant_expression_repeat1] = STATE(1520), - [aux_sym_name_expression_repeat1] = STATE(1396), - [aux_sym_name_expression_repeat2] = STATE(1688), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(211), - [anon_sym_LPAREN] = ACTIONS(213), - [anon_sym_PIPE] = ACTIONS(215), - [anon_sym_match] = ACTIONS(217), - [anon_sym_if] = ACTIONS(219), - [anon_sym_do] = ACTIONS(221), - [anon_sym_while] = ACTIONS(223), - [anon_sym_for] = ACTIONS(225), - [anon_sym_loop] = ACTIONS(227), - [anon_sym_TILDE] = ACTIONS(229), - [anon_sym_AT] = ACTIONS(229), - [anon_sym_return] = ACTIONS(231), - [anon_sym_DOLLAR] = ACTIONS(233), - [anon_sym_BSLASH] = ACTIONS(235), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(237), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(239), - [sym_float_number_literal] = ACTIONS(241), - [sym_number_literal] = ACTIONS(243), - [anon_sym_DQUOTE] = ACTIONS(245), - [anon_sym_SQUOTE] = ACTIONS(247), - }, - [172] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2567), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(101), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [173] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2754), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(87), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [174] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2802), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(131), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [175] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2580), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(103), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [176] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2741), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(163), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [177] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2906), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(139), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [178] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2596), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(105), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [179] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2568), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [180] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2671), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(129), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [181] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2607), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(107), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [182] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2563), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), [sym_operator] = ACTIONS(153), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [183] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2783), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [97] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2854), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2912), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -26854,52 +24745,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(127), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(131), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [184] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2859), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [98] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3108), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -26922,52 +24815,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(155), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(95), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [185] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2765), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [99] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3034), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3109), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -26990,52 +24885,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(125), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(79), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [186] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2626), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [100] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2717), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -27058,52 +24955,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(109), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(113), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [187] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2511), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [101] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2799), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -27126,1004 +25025,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [188] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2517), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [189] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2911), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(141), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [190] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2882), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(149), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [191] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2749), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(123), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [192] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2637), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(111), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [193] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2646), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [194] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2740), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [195] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2898), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(147), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [196] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2506), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(157), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [197] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2743), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(121), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [198] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2722), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(119), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [199] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2649), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(75), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [200] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2838), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(171), - [sym_float_number_literal] = ACTIONS(67), - [sym_number_literal] = ACTIONS(69), - [anon_sym_DQUOTE] = ACTIONS(71), - [anon_sym_SQUOTE] = ACTIONS(73), - }, - [201] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2873), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym_LPAREN] = ACTIONS(33), - [anon_sym_PIPE] = ACTIONS(35), - [anon_sym_match] = ACTIONS(37), - [anon_sym_if] = ACTIONS(39), - [anon_sym_do] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_for] = ACTIONS(45), - [anon_sym_loop] = ACTIONS(47), - [anon_sym_TILDE] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(49), - [anon_sym_return] = ACTIONS(51), - [anon_sym_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH] = ACTIONS(55), - [anon_sym_LBRACK] = ACTIONS(57), - [anon_sym_break] = ACTIONS(59), - [anon_sym_continue] = ACTIONS(59), - [sym__line_comment] = ACTIONS(3), - [sym__doc_comment] = ACTIONS(5), - [sym__block_comment] = ACTIONS(5), - [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), [sym_operator] = ACTIONS(145), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [202] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2647), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [102] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2983), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3043), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -28146,52 +25095,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(165), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(135), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [203] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2916), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [103] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2826), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -28214,52 +25165,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(143), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(137), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [204] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2692), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [104] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3025), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -28282,52 +25235,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(117), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(175), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [205] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2541), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [105] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -28350,52 +25305,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(139), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [106] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(119), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [107] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3054), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3099), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(169), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [108] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(177), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [109] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3049), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3090), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(173), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [110] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3041), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3083), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(153), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [111] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3097), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(179), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [112] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2771), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(171), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [113] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3035), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), [sym_operator] = ACTIONS(167), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [206] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2659), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [114] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2854), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -28418,52 +25935,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(115), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(131), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), [anon_sym_SQUOTE] = ACTIONS(73), }, - [207] = { - [sym_match] = STATE(758), - [sym_condition] = STATE(758), - [sym_do_while_loop] = STATE(758), - [sym_while_loop] = STATE(758), - [sym_for_loop] = STATE(758), - [sym_loop_loop] = STATE(758), - [sym_flow_control] = STATE(759), - [sym_block] = STATE(595), - [sym_subexpression_token] = STATE(610), - [sym_subexpression] = STATE(2390), - [sym_prefixed_expression] = STATE(584), - [sym_expression] = STATE(759), - [sym_superexpression] = STATE(2830), - [sym_scoped_statement] = STATE(613), - [sym_binary_operator_expression] = STATE(610), - [sym_unary_operator_expression] = STATE(584), - [sym_reference_expression] = STATE(610), - [sym_function_call_expression] = STATE(610), - [sym_tuple_expression] = STATE(759), - [sym_variant_expression] = STATE(759), - [sym_return_expression] = STATE(595), - [sym_type_constructor] = STATE(584), - [sym_lambda_function] = STATE(584), - [sym_array_expression] = STATE(610), - [sym_loop_control_expression] = STATE(595), - [sym_name_expression] = STATE(993), - [sym_name_subexpression] = STATE(2609), - [sym_type_subexpression] = STATE(2689), - [sym_extended_name] = STATE(1742), - [sym_string_literal] = STATE(1753), - [sym_char_literal] = STATE(1753), - [sym_literal] = STATE(1742), - [aux_sym_reference_expression_repeat1] = STATE(2210), - [aux_sym_tuple_expression_repeat1] = STATE(2410), - [aux_sym_variant_expression_repeat1] = STATE(2436), - [aux_sym_name_expression_repeat1] = STATE(1403), - [aux_sym_name_expression_repeat2] = STATE(1724), + [115] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3025), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), [anon_sym_LBRACE] = ACTIONS(29), [anon_sym_AMP] = ACTIONS(31), [anon_sym_LPAREN] = ACTIONS(33), @@ -28486,9 +26005,3553 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__doc_comment] = ACTIONS(5), [sym__block_comment] = ACTIONS(5), [sym_name_identifier] = ACTIONS(61), - [sym_type_identifier] = ACTIONS(169), - [sym_abstract_type_identifier] = ACTIONS(169), - [sym_operator] = ACTIONS(151), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(85), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [116] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3089), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(87), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [117] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3097), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(105), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [118] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(121), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [119] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3079), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(65), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [120] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3017), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3073), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(177), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [121] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3035), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(135), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [122] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3025), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(149), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [123] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3071), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(81), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [124] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3035), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(143), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [125] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2650), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2668), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(139), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [126] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(181), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [127] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2716), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2774), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(161), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [128] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3025), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(157), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [129] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2675), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2720), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(155), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [130] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2911), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(147), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [131] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2826), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2884), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(137), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [132] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3034), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(79), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [133] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2911), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(123), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [134] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(125), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [135] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3054), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(169), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [136] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2881), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(163), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [137] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(127), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [138] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3011), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3065), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(167), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [139] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2911), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(183), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [140] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3001), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3058), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(85), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [141] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2658), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2676), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(147), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [142] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2799), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2856), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(145), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [143] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2989), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3050), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(105), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [144] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3049), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(173), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [145] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3017), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(177), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [146] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3035), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(117), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [147] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3025), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(133), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [148] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2969), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(143), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [149] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2965), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(157), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [150] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2949), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(133), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [151] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2954), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(3006), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(117), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [152] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2771), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2829), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(171), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [153] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2744), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_parametrized_type] = STATE(2801), + [sym_type_expression] = STATE(167), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1975), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(63), + [sym_abstract_type_identifier] = ACTIONS(63), + [sym_operator] = ACTIONS(159), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [154] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3074), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [155] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(1770), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(1647), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(543), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1239), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2332), + [aux_sym_tuple_expression_repeat1] = STATE(1615), + [aux_sym_variant_expression_repeat1] = STATE(1619), + [aux_sym_name_expression_repeat1] = STATE(1959), + [aux_sym_name_expression_repeat2] = STATE(2211), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_match] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_loop] = ACTIONS(205), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(207), + [anon_sym_return] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_BSLASH] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(215), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(217), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [156] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3025), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [157] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(1770), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(1646), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(543), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1239), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2332), + [aux_sym_tuple_expression_repeat1] = STATE(1615), + [aux_sym_variant_expression_repeat1] = STATE(1619), + [aux_sym_name_expression_repeat1] = STATE(1959), + [aux_sym_name_expression_repeat2] = STATE(2211), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(189), + [anon_sym_LPAREN] = ACTIONS(191), + [anon_sym_PIPE] = ACTIONS(193), + [anon_sym_match] = ACTIONS(195), + [anon_sym_if] = ACTIONS(197), + [anon_sym_do] = ACTIONS(199), + [anon_sym_while] = ACTIONS(201), + [anon_sym_for] = ACTIONS(203), + [anon_sym_loop] = ACTIONS(205), + [anon_sym_TILDE] = ACTIONS(207), + [anon_sym_AT] = ACTIONS(207), + [anon_sym_return] = ACTIONS(209), + [anon_sym_DOLLAR] = ACTIONS(211), + [anon_sym_BSLASH] = ACTIONS(213), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(215), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(217), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [158] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2717), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [159] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2997), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [160] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2933), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [161] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(2911), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [162] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(1641), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(1647), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(533), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(751), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2367), + [aux_sym_tuple_expression_repeat1] = STATE(1573), + [aux_sym_variant_expression_repeat1] = STATE(1559), + [aux_sym_name_expression_repeat1] = STATE(1948), + [aux_sym_name_expression_repeat2] = STATE(2323), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_match] = ACTIONS(225), + [anon_sym_if] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_while] = ACTIONS(231), + [anon_sym_for] = ACTIONS(233), + [anon_sym_loop] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_AT] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(245), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(247), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [163] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3035), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [164] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(1641), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(1646), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(533), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(751), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2367), + [aux_sym_tuple_expression_repeat1] = STATE(1573), + [aux_sym_variant_expression_repeat1] = STATE(1559), + [aux_sym_name_expression_repeat1] = STATE(1948), + [aux_sym_name_expression_repeat2] = STATE(2323), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(221), + [anon_sym_PIPE] = ACTIONS(223), + [anon_sym_match] = ACTIONS(225), + [anon_sym_if] = ACTIONS(227), + [anon_sym_do] = ACTIONS(229), + [anon_sym_while] = ACTIONS(231), + [anon_sym_for] = ACTIONS(233), + [anon_sym_loop] = ACTIONS(235), + [anon_sym_TILDE] = ACTIONS(237), + [anon_sym_AT] = ACTIONS(237), + [anon_sym_return] = ACTIONS(239), + [anon_sym_DOLLAR] = ACTIONS(241), + [anon_sym_BSLASH] = ACTIONS(243), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(245), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(247), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [165] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(2488), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(3097), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(956), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1680), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2376), + [aux_sym_tuple_expression_repeat1] = STATE(2565), + [aux_sym_variant_expression_repeat1] = STATE(2572), + [aux_sym_name_expression_repeat1] = STATE(1982), + [aux_sym_name_expression_repeat2] = STATE(2256), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym_LPAREN] = ACTIONS(33), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_match] = ACTIONS(37), + [anon_sym_if] = ACTIONS(39), + [anon_sym_do] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_for] = ACTIONS(45), + [anon_sym_loop] = ACTIONS(47), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(49), + [anon_sym_return] = ACTIONS(51), + [anon_sym_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(61), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(187), + [sym_float_number_literal] = ACTIONS(67), + [sym_number_literal] = ACTIONS(69), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + }, + [166] = { + [sym_match] = STATE(848), + [sym_condition] = STATE(848), + [sym_do_while_loop] = STATE(848), + [sym_while_loop] = STATE(848), + [sym_for_loop] = STATE(848), + [sym_loop_loop] = STATE(848), + [sym_flow_control] = STATE(846), + [sym_block] = STATE(550), + [sym_subexpression_token] = STATE(597), + [sym_subexpression] = STATE(1712), + [sym_prefixed_expression] = STATE(552), + [sym_expression] = STATE(846), + [sym_superexpression] = STATE(1793), + [sym_scoped_statement] = STATE(587), + [sym_binary_operator_expression] = STATE(597), + [sym_unary_operator_expression] = STATE(552), + [sym_reference_expression] = STATE(597), + [sym_access_expression] = STATE(587), + [sym_function_call_expression] = STATE(597), + [sym_tuple_expression] = STATE(846), + [sym_variant_expression] = STATE(846), + [sym_return_expression] = STATE(550), + [sym_type_constructor] = STATE(552), + [sym_lambda_function] = STATE(552), + [sym_array_expression] = STATE(597), + [sym_loop_control_expression] = STATE(550), + [sym_name_expression] = STATE(539), + [sym_type_subexpression] = STATE(3048), + [sym_extended_name] = STATE(1298), + [sym_string_literal] = STATE(592), + [sym_char_literal] = STATE(592), + [sym_literal] = STATE(587), + [aux_sym_reference_expression_repeat1] = STATE(2350), + [aux_sym_tuple_expression_repeat1] = STATE(1656), + [aux_sym_variant_expression_repeat1] = STATE(1657), + [aux_sym_name_expression_repeat1] = STATE(2007), + [aux_sym_name_expression_repeat2] = STATE(2228), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_match] = ACTIONS(255), + [anon_sym_if] = ACTIONS(257), + [anon_sym_do] = ACTIONS(259), + [anon_sym_while] = ACTIONS(261), + [anon_sym_for] = ACTIONS(263), + [anon_sym_loop] = ACTIONS(265), + [anon_sym_TILDE] = ACTIONS(267), + [anon_sym_AT] = ACTIONS(267), + [anon_sym_return] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(271), + [anon_sym_BSLASH] = ACTIONS(273), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_break] = ACTIONS(59), + [anon_sym_continue] = ACTIONS(59), + [sym__line_comment] = ACTIONS(3), + [sym__doc_comment] = ACTIONS(5), + [sym__block_comment] = ACTIONS(5), + [sym_name_identifier] = ACTIONS(275), + [sym_type_identifier] = ACTIONS(185), + [sym_abstract_type_identifier] = ACTIONS(185), + [sym_operator] = ACTIONS(277), [sym_float_number_literal] = ACTIONS(67), [sym_number_literal] = ACTIONS(69), [anon_sym_DQUOTE] = ACTIONS(71), @@ -28500,15 +29563,15 @@ static const uint16_t ts_small_parse_table[] = { [0] = 10, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(291), 1, + ACTIONS(281), 1, anon_sym_type, - ACTIONS(293), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - STATE(217), 1, + STATE(175), 1, sym_type_expression, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -28516,10 +29579,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(210), 2, + STATE(168), 2, sym_type_parameter, aux_sym_parametrized_type_repeat1, - ACTIONS(289), 41, + ACTIONS(279), 41, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -28564,15 +29627,15 @@ static const uint16_t ts_small_parse_table[] = { [74] = 10, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(293), 1, + ACTIONS(283), 1, anon_sym_LPAREN, - ACTIONS(297), 1, + ACTIONS(287), 1, anon_sym_type, - STATE(217), 1, + STATE(175), 1, sym_type_expression, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -28580,10 +29643,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(208), 2, + STATE(169), 2, sym_type_parameter, aux_sym_parametrized_type_repeat1, - ACTIONS(295), 41, + ACTIONS(285), 41, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -28628,26 +29691,26 @@ static const uint16_t ts_small_parse_table[] = { [148] = 10, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(301), 1, + ACTIONS(291), 1, anon_sym_type, - ACTIONS(303), 1, + ACTIONS(293), 1, anon_sym_LPAREN, - STATE(217), 1, + STATE(175), 1, sym_type_expression, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(306), 2, + ACTIONS(296), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(210), 2, + STATE(169), 2, sym_type_parameter, aux_sym_parametrized_type_repeat1, - ACTIONS(299), 41, + ACTIONS(289), 41, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -28692,16 +29755,16 @@ static const uint16_t ts_small_parse_table[] = { [222] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(311), 1, + ACTIONS(301), 1, anon_sym_type, - ACTIONS(313), 1, + ACTIONS(303), 1, anon_sym_DOT, - ACTIONS(315), 1, + ACTIONS(305), 1, anon_sym__, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(309), 44, + ACTIONS(299), 44, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -28749,16 +29812,16 @@ static const uint16_t ts_small_parse_table[] = { [285] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(313), 1, + ACTIONS(303), 1, anon_sym_DOT, - ACTIONS(319), 1, + ACTIONS(309), 1, anon_sym_type, - ACTIONS(321), 1, + ACTIONS(311), 1, anon_sym__, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(317), 44, + ACTIONS(307), 44, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -28806,14 +29869,14 @@ static const uint16_t ts_small_parse_table[] = { [348] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(325), 1, + ACTIONS(315), 1, anon_sym_type, - ACTIONS(327), 1, - sym_number_literal, + ACTIONS(317), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(323), 44, + ACTIONS(313), 44, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -28861,14 +29924,14 @@ static const uint16_t ts_small_parse_table[] = { [408] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(331), 1, + ACTIONS(321), 1, anon_sym_type, - ACTIONS(333), 1, - anon_sym_DOT, + ACTIONS(323), 1, + sym_number_literal, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(329), 44, + ACTIONS(319), 44, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -28914,12 +29977,118 @@ static const uint16_t ts_small_parse_table[] = { sym_type_identifier, sym_abstract_type_identifier, [468] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(327), 1, + anon_sym_type, + ACTIONS(329), 1, + sym_number_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(325), 44, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_LT_DASH, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + sym_type_identifier, + sym_abstract_type_identifier, + [528] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(333), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(331), 44, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_LT_DASH, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_in, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + sym_type_identifier, + sym_abstract_type_identifier, + [585] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(337), 1, anon_sym_type, - ACTIONS(339), 1, - sym_number_literal, ACTIONS(3), 2, sym__line_comment, sym__block_comment, @@ -28968,121 +30137,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, sym_type_identifier, sym_abstract_type_identifier, - [528] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(343), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(341), 44, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_LT_DASH, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - sym_type_identifier, - sym_abstract_type_identifier, - [585] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(347), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(345), 44, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_LT_DASH, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_in, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - sym_type_identifier, - sym_abstract_type_identifier, [642] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(351), 1, + ACTIONS(341), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(349), 44, + ACTIONS(339), 44, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -29127,487 +30190,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, sym_type_identifier, sym_abstract_type_identifier, - [699] = 32, + [699] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, + ACTIONS(343), 1, + ts_builtin_sym_end, + ACTIONS(347), 1, + anon_sym_COLON, + ACTIONS(349), 1, anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, ACTIONS(353), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [811] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(355), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [923] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, ACTIONS(357), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [1035] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, ACTIONS(359), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [1147] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, ACTIONS(361), 1, - anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2420), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [1259] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, ACTIONS(363), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + anon_sym_SQUOTE, + STATE(694), 1, + sym_extended_name, + STATE(749), 1, sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(766), 1, sym_type_subexpression, + STATE(806), 1, + sym_subexpression_token, + STATE(1969), 1, + aux_sym_name_expression_repeat1, + STATE(2304), 1, + aux_sym_name_expression_repeat2, + STATE(2547), 1, + aux_sym_reference_expression_repeat1, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(49), 2, + ACTIONS(351), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(355), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(184), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(860), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [1371] = 32, + STATE(782), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [794] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -29632,27 +30287,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, sym_operator, ACTIONS(365), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + anon_sym_RBRACK, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2601), 1, + sym_expression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -29663,31 +30316,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [1483] = 32, + [904] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -29712,187 +30366,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, sym_operator, ACTIONS(367), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [1595] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(369), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [1707] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(371), 1, anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2428), 1, + STATE(2569), 1, sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -29903,3511 +30395,303 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [1819] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(373), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, + STATE(587), 3, sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [1931] = 32, + [1014] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(375), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2043] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(377), 1, - anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2395), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2155] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(379), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2267] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(381), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2379] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(383), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2491] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, + ACTIONS(343), 1, ts_builtin_sym_end, + ACTIONS(369), 1, + anon_sym_COLON, + ACTIONS(371), 1, + anon_sym_LPAREN, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(379), 1, + sym_float_number_literal, + ACTIONS(381), 1, + sym_number_literal, + ACTIONS(383), 1, + anon_sym_DQUOTE, + ACTIONS(385), 1, + anon_sym_SQUOTE, + STATE(717), 1, + sym_extended_name, + STATE(813), 1, + sym_name_expression, + STATE(825), 1, + sym_type_subexpression, + STATE(920), 1, + sym_subexpression_token, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2498), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(373), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(377), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(263), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(930), 2, + sym_string_literal, + sym_char_literal, + STATE(925), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [1108] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + ts_builtin_sym_end, + ACTIONS(387), 1, + anon_sym_COLON, ACTIONS(389), 1, anon_sym_LPAREN, - ACTIONS(395), 1, + ACTIONS(393), 1, sym_name_identifier, + ACTIONS(397), 1, + sym_float_number_literal, + ACTIONS(399), 1, + sym_number_literal, ACTIONS(401), 1, + anon_sym_DQUOTE, + ACTIONS(403), 1, + anon_sym_SQUOTE, + STATE(769), 1, + sym_extended_name, + STATE(785), 1, + sym_type_subexpression, + STATE(815), 1, + sym_name_expression, + STATE(985), 1, + sym_subexpression_token, + STATE(1960), 1, + aux_sym_name_expression_repeat1, + STATE(2260), 1, + aux_sym_name_expression_repeat2, + STATE(2535), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(391), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(395), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(274), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(934), 2, + sym_string_literal, + sym_char_literal, + STATE(931), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [1202] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(404), 1, + ACTIONS(69), 1, sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(405), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [1312] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(349), 1, + anon_sym_LPAREN, + ACTIONS(353), 1, + sym_name_identifier, + ACTIONS(357), 1, + sym_float_number_literal, + ACTIONS(359), 1, + sym_number_literal, + ACTIONS(361), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + anon_sym_SQUOTE, ACTIONS(407), 1, - anon_sym_DQUOTE, - ACTIONS(410), 1, - anon_sym_SQUOTE, - STATE(680), 1, - sym_type_subexpression, - STATE(755), 1, - sym_subexpression_token, - STATE(1423), 1, - aux_sym_name_expression_repeat1, - STATE(1803), 1, - aux_sym_name_expression_repeat2, - STATE(2319), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(392), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(398), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(235), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(679), 2, - sym_string_literal, - sym_char_literal, - STATE(682), 2, - sym_extended_name, - sym_literal, - STATE(722), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [2583] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(413), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2695] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(415), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2807] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(417), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [2919] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(419), 1, - anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2431), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3031] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(421), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3143] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(423), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3255] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(425), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3367] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(427), 1, - anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2402), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3479] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(429), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3591] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(431), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3703] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(433), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3815] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(435), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [3927] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(437), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4039] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(439), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4151] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(441), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4263] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(443), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4375] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(445), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4487] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(447), 1, - anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2392), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4599] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(449), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4711] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(451), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4823] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(453), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [4935] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(455), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5047] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(457), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5159] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(459), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5271] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(461), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5383] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(463), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5495] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(465), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5607] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(467), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5719] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(469), 1, - anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2423), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5831] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(471), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [5943] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(473), 1, - anon_sym_RBRACK, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2415), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [6055] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(475), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [6167] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(477), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [6279] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(479), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [6391] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(481), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [6503] = 32, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - ACTIONS(483), 1, - anon_sym_RPAREN, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [6615] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, ts_builtin_sym_end, - ACTIONS(489), 1, - anon_sym_LPAREN, - ACTIONS(493), 1, - sym_name_identifier, - ACTIONS(497), 1, - sym_float_number_literal, - ACTIONS(499), 1, - sym_number_literal, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - STATE(680), 1, + STATE(694), 1, + sym_extended_name, + STATE(749), 1, + sym_name_expression, + STATE(766), 1, sym_type_subexpression, - STATE(755), 1, + STATE(806), 1, sym_subexpression_token, - STATE(1423), 1, + STATE(1969), 1, aux_sym_name_expression_repeat1, - STATE(1803), 1, + STATE(2304), 1, aux_sym_name_expression_repeat2, - STATE(2319), 1, + STATE(2547), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(491), 2, + ACTIONS(351), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(495), 2, + ACTIONS(355), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(275), 2, + STATE(185), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(679), 2, + STATE(860), 2, sym_string_literal, sym_char_literal, - STATE(682), 2, - sym_extended_name, - sym_literal, - STATE(722), 2, + STATE(782), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 19, + sym_access_expression, + sym_literal, + ACTIONS(409), 19, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -33427,7 +30711,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [6707] = 32, + [1404] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(415), 1, + anon_sym_LPAREN, + ACTIONS(421), 1, + sym_name_identifier, + ACTIONS(427), 1, + sym_float_number_literal, + ACTIONS(430), 1, + sym_number_literal, + ACTIONS(433), 1, + anon_sym_DQUOTE, + ACTIONS(436), 1, + anon_sym_SQUOTE, + STATE(694), 1, + sym_extended_name, + STATE(749), 1, + sym_name_expression, + STATE(766), 1, + sym_type_subexpression, + STATE(806), 1, + sym_subexpression_token, + STATE(1969), 1, + aux_sym_name_expression_repeat1, + STATE(2304), 1, + aux_sym_name_expression_repeat2, + STATE(2547), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(418), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(424), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(185), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(860), 2, + sym_string_literal, + sym_char_literal, + STATE(782), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [1496] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(347), 1, + anon_sym_COLON, + ACTIONS(439), 1, + anon_sym_LPAREN, + ACTIONS(443), 1, + sym_name_identifier, + ACTIONS(447), 1, + sym_float_number_literal, + ACTIONS(449), 1, + sym_number_literal, + ACTIONS(451), 1, + anon_sym_DQUOTE, + ACTIONS(453), 1, + anon_sym_SQUOTE, + STATE(745), 1, + sym_extended_name, + STATE(816), 1, + sym_type_subexpression, + STATE(857), 1, + sym_name_expression, + STATE(947), 1, + sym_subexpression_token, + STATE(1970), 1, + aux_sym_name_expression_repeat1, + STATE(2308), 1, + aux_sym_name_expression_repeat2, + STATE(2489), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(441), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(445), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(299), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(876), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(343), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(875), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [1590] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + ts_builtin_sym_end, + ACTIONS(455), 1, + anon_sym_COLON, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + sym_name_identifier, + ACTIONS(465), 1, + sym_float_number_literal, + ACTIONS(467), 1, + sym_number_literal, + ACTIONS(469), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + anon_sym_SQUOTE, + STATE(723), 1, + sym_extended_name, + STATE(818), 1, + sym_name_expression, + STATE(840), 1, + sym_type_subexpression, + STATE(897), 1, + sym_subexpression_token, + STATE(1976), 1, + aux_sym_name_expression_repeat1, + STATE(2320), 1, + aux_sym_name_expression_repeat2, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(459), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(463), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(328), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(972), 2, + sym_string_literal, + sym_char_literal, + STATE(974), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + [1684] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(347), 1, + anon_sym_COLON, + ACTIONS(473), 1, + anon_sym_LPAREN, + ACTIONS(477), 1, + sym_name_identifier, + ACTIONS(481), 1, + sym_float_number_literal, + ACTIONS(483), 1, + sym_number_literal, + ACTIONS(485), 1, + anon_sym_DQUOTE, + ACTIONS(487), 1, + anon_sym_SQUOTE, + STATE(778), 1, + sym_extended_name, + STATE(794), 1, + sym_name_expression, + STATE(854), 1, + sym_type_subexpression, + STATE(879), 1, + sym_subexpression_token, + STATE(1981), 1, + aux_sym_name_expression_repeat1, + STATE(2302), 1, + aux_sym_name_expression_repeat2, + STATE(2540), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(475), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(479), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(346), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(961), 2, + sym_string_literal, + sym_char_literal, + STATE(953), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [1778] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -33452,27 +31019,657 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, + sym_operator, + ACTIONS(489), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [1888] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(491), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [1998] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(493), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [2108] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(495), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [2218] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(497), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [2328] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(499), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [2438] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(501), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [2548] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(503), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [2658] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, sym_operator, ACTIONS(505), 1, anon_sym_RPAREN, - STATE(591), 1, + STATE(561), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -33483,31 +31680,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [6819] = 32, + [2768] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -33532,27 +31730,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, sym_operator, ACTIONS(507), 1, anon_sym_RPAREN, - STATE(591), 1, + STATE(561), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -33563,101 +31759,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [6931] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(489), 1, - anon_sym_LPAREN, - ACTIONS(493), 1, - sym_name_identifier, - ACTIONS(497), 1, - sym_float_number_literal, - ACTIONS(499), 1, - sym_number_literal, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - ts_builtin_sym_end, - STATE(680), 1, - sym_type_subexpression, - STATE(755), 1, - sym_subexpression_token, - STATE(1423), 1, - aux_sym_name_expression_repeat1, - STATE(1803), 1, - aux_sym_name_expression_repeat2, - STATE(2319), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(491), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(495), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(235), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(679), 2, - sym_string_literal, - sym_char_literal, - STATE(682), 2, - sym_extended_name, - sym_literal, - STATE(722), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [7023] = 32, + [2878] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -33682,27 +31809,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, + sym_operator, + ACTIONS(509), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [2988] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(511), 1, + anon_sym_RBRACK, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(2574), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [3098] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, sym_operator, ACTIONS(513), 1, anon_sym_RPAREN, - STATE(591), 1, + STATE(561), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -33713,31 +31996,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7135] = 32, + [3208] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -33762,27 +32046,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, sym_operator, ACTIONS(515), 1, anon_sym_RPAREN, - STATE(591), 1, + STATE(561), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -33793,31 +32075,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7247] = 32, + [3318] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -33842,27 +32125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, sym_operator, ACTIONS(517), 1, anon_sym_RPAREN, - STATE(591), 1, + STATE(561), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -33873,1538 +32154,4323 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7359] = 31, + [3428] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, + ACTIONS(61), 1, sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(205), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(207), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(589), 1, + ACTIONS(187), 1, + sym_operator, + ACTIONS(519), 1, + anon_sym_RPAREN, + STATE(561), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1442), 1, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1721), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7468] = 31, + [3538] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_return, - ACTIONS(525), 1, - anon_sym_DOLLAR, - ACTIONS(527), 1, - anon_sym_BSLASH, - ACTIONS(529), 1, + ACTIONS(61), 1, sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(521), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [3648] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(523), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [3758] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(525), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [3868] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(527), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [3978] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(529), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4088] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(531), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4198] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, sym_operator, ACTIONS(533), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4308] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(535), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4418] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(537), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4528] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1473), 1, + anon_sym_RPAREN, + STATE(561), 1, sym_expression, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2238), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7577] = 31, + [4638] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(541), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(545), 1, + ACTIONS(51), 1, anon_sym_return, - ACTIONS(547), 1, + ACTIONS(53), 1, anon_sym_DOLLAR, - ACTIONS(549), 1, + ACTIONS(55), 1, anon_sym_BSLASH, - ACTIONS(551), 1, + ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(553), 1, + ACTIONS(61), 1, sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(541), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4748] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(543), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4858] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(545), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [4968] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(547), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5078] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(549), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5188] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(551), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5298] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(553), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5408] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(555), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5518] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, sym_operator, ACTIONS(557), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5628] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(559), 1, + anon_sym_RBRACK, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(2603), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5738] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(561), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [5848] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(563), 1, - anon_sym_SQUOTE, - STATE(569), 1, - sym_name_expression, - STATE(586), 1, + anon_sym_RPAREN, + STATE(561), 1, sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1662), 1, - sym_subexpression, - STATE(1675), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2202), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(543), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1251), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7686] = 31, + [5958] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(569), 1, + ACTIONS(51), 1, anon_sym_return, - ACTIONS(571), 1, + ACTIONS(53), 1, anon_sym_DOLLAR, - ACTIONS(573), 1, + ACTIONS(55), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(577), 1, + ACTIONS(61), 1, sym_name_identifier, - ACTIONS(579), 1, - sym_operator, - ACTIONS(581), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(583), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(585), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(587), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(565), 1, + anon_sym_RPAREN, STATE(561), 1, - sym_name_expression, - STATE(591), 1, sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1436), 1, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1535), 1, - sym_subexpression, - STATE(1826), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2252), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7795] = 31, + [6068] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(565), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(569), 1, + ACTIONS(51), 1, anon_sym_return, - ACTIONS(571), 1, + ACTIONS(53), 1, anon_sym_DOLLAR, - ACTIONS(573), 1, + ACTIONS(55), 1, anon_sym_BSLASH, - ACTIONS(575), 1, + ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(577), 1, + ACTIONS(61), 1, sym_name_identifier, - ACTIONS(579), 1, - sym_operator, - ACTIONS(581), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(583), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(585), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(587), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(567), 1, + anon_sym_RPAREN, STATE(561), 1, - sym_name_expression, - STATE(585), 1, sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1436), 1, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1535), 1, - sym_subexpression, - STATE(1826), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2252), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [7904] = 22, + [6178] = 31, ACTIONS(3), 1, sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(569), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [6288] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(571), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [6398] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(573), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [6508] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(575), 1, + anon_sym_RBRACK, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(2595), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [6618] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(577), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [6728] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(579), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [6838] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(581), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [6948] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(583), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [7058] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(585), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [7168] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(587), 1, + anon_sym_RBRACK, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(2579), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [7278] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(589), 1, - anon_sym_LPAREN, - ACTIONS(593), 1, - sym_name_identifier, - ACTIONS(597), 1, - sym_float_number_literal, - ACTIONS(599), 1, - sym_number_literal, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(603), 1, - anon_sym_SQUOTE, - STATE(767), 1, - sym_type_subexpression, - STATE(783), 1, - sym_subexpression_token, - STATE(1387), 1, - aux_sym_name_expression_repeat1, - STATE(1665), 1, - aux_sym_name_expression_repeat2, - STATE(2358), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(591), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(595), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(326), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(690), 2, - sym_string_literal, - sym_char_literal, - STATE(764), 2, - sym_extended_name, - sym_literal, - STATE(937), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [7995] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_LPAREN, - ACTIONS(569), 1, - anon_sym_return, - ACTIONS(571), 1, - anon_sym_DOLLAR, - ACTIONS(573), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(577), 1, - sym_name_identifier, - ACTIONS(579), 1, - sym_operator, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, STATE(561), 1, - sym_name_expression, - STATE(592), 1, sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1436), 1, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1535), 1, - sym_subexpression, - STATE(1826), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2252), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [8104] = 31, + [7388] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(541), 1, + ACTIONS(33), 1, anon_sym_LPAREN, - ACTIONS(545), 1, + ACTIONS(51), 1, anon_sym_return, - ACTIONS(547), 1, + ACTIONS(53), 1, anon_sym_DOLLAR, - ACTIONS(549), 1, + ACTIONS(55), 1, anon_sym_BSLASH, - ACTIONS(551), 1, + ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(553), 1, + ACTIONS(61), 1, sym_name_identifier, - ACTIONS(555), 1, - sym_operator, - ACTIONS(557), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(559), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(561), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(569), 1, - sym_name_expression, - STATE(587), 1, + ACTIONS(187), 1, + sym_operator, + ACTIONS(591), 1, + anon_sym_RPAREN, + STATE(561), 1, sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1662), 1, - sym_subexpression, - STATE(1675), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2202), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(543), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1251), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [8213] = 22, + [7498] = 31, ACTIONS(3), 1, sym__line_comment, - ACTIONS(589), 1, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(593), 1, - sym_name_identifier, - ACTIONS(597), 1, - sym_float_number_literal, - ACTIONS(599), 1, - sym_number_literal, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(603), 1, - anon_sym_SQUOTE, - STATE(767), 1, - sym_type_subexpression, - STATE(783), 1, - sym_subexpression_token, - STATE(1387), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1665), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2358), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(591), 2, + ACTIONS(49), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(595), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(284), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(690), 2, - sym_string_literal, - sym_char_literal, - STATE(764), 2, - sym_extended_name, - sym_literal, - STATE(937), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [8304] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_return, - ACTIONS(547), 1, - anon_sym_DOLLAR, - ACTIONS(549), 1, - anon_sym_BSLASH, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(553), 1, - sym_name_identifier, - ACTIONS(555), 1, - sym_operator, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - STATE(569), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1662), 1, - sym_subexpression, - STATE(1675), 1, - aux_sym_name_expression_repeat2, - STATE(2202), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(543), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1251), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [8413] = 31, + [7608] = 31, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(595), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [7718] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(597), 1, + anon_sym_RBRACK, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(2599), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [7828] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(599), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [7938] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(601), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8048] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(603), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8158] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(605), 1, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8268] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + ACTIONS(607), 1, + anon_sym_RBRACK, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(2564), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8378] = 31, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, ACTIONS(609), 1, - anon_sym_return, + anon_sym_RPAREN, + STATE(561), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8488] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(613), 1, - anon_sym_BSLASH, + anon_sym_LPAREN, ACTIONS(615), 1, - anon_sym_LBRACK, + anon_sym_return, ACTIONS(617), 1, - sym_name_identifier, + anon_sym_DOLLAR, ACTIONS(619), 1, - sym_operator, + anon_sym_BSLASH, ACTIONS(621), 1, - sym_float_number_literal, + sym_name_identifier, ACTIONS(623), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8595] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - STATE(440), 1, - sym_name_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1432), 1, - sym_subexpression, - STATE(1469), 1, - sym_expression, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2204), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(607), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [8522] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(569), 1, - anon_sym_return, - ACTIONS(571), 1, - anon_sym_DOLLAR, - ACTIONS(573), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(577), 1, - sym_name_identifier, - ACTIONS(579), 1, - sym_operator, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - STATE(561), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1436), 1, - aux_sym_name_expression_repeat1, - STATE(1535), 1, - sym_subexpression, - STATE(1826), 1, - aux_sym_name_expression_repeat2, - STATE(2252), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [8631] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_LPAREN, - ACTIONS(569), 1, - anon_sym_return, - ACTIONS(571), 1, - anon_sym_DOLLAR, - ACTIONS(573), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(577), 1, - sym_name_identifier, - ACTIONS(579), 1, - sym_operator, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - STATE(561), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1436), 1, - aux_sym_name_expression_repeat1, - STATE(1535), 1, - sym_subexpression, - STATE(1826), 1, - aux_sym_name_expression_repeat2, - STATE(2252), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [8740] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, anon_sym_return, - ACTIONS(635), 1, + ACTIONS(631), 1, anon_sym_DOLLAR, - ACTIONS(637), 1, + ACTIONS(633), 1, anon_sym_BSLASH, - ACTIONS(639), 1, + ACTIONS(635), 1, sym_name_identifier, - ACTIONS(641), 1, + ACTIONS(637), 1, sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, + STATE(1207), 1, sym_name_expression, - STATE(1437), 1, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, aux_sym_name_expression_repeat1, - STATE(1682), 1, + STATE(2233), 1, aux_sym_name_expression_repeat2, - STATE(2216), 1, + STATE(2352), 1, aux_sym_reference_expression_repeat1, - STATE(2482), 1, + STATE(2631), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2792), 1, + STATE(2928), 1, sym_expression, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(631), 2, + ACTIONS(627), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [8849] = 31, + [8702] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2784), 1, - sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [8958] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, anon_sym_LPAREN, - ACTIONS(569), 1, - anon_sym_return, - ACTIONS(571), 1, - anon_sym_DOLLAR, - ACTIONS(573), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(577), 1, - sym_name_identifier, - ACTIONS(579), 1, - sym_operator, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - STATE(561), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1436), 1, - aux_sym_name_expression_repeat1, - STATE(1535), 1, - sym_subexpression, - STATE(1826), 1, - aux_sym_name_expression_repeat2, - STATE(2252), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [9067] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, ACTIONS(643), 1, - sym_float_number_literal, + anon_sym_return, ACTIONS(645), 1, - sym_number_literal, + anon_sym_DOLLAR, ACTIONS(647), 1, - anon_sym_DQUOTE, + anon_sym_BSLASH, ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2800), 1, - sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [9176] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, + sym_name_identifier, ACTIONS(651), 1, + sym_operator, + STATE(265), 1, + sym_name_expression, + STATE(807), 1, + sym_extended_name, + STATE(1516), 1, + sym_expression, + STATE(1530), 1, + sym_subexpression, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8809] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, anon_sym_LPAREN, - ACTIONS(655), 1, + ACTIONS(239), 1, anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(751), 1, + sym_extended_name, + STATE(789), 1, + sym_expression, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [8916] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(751), 1, + sym_extended_name, + STATE(796), 1, + sym_expression, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [9023] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + anon_sym_LPAREN, ACTIONS(657), 1, - anon_sym_DOLLAR, + anon_sym_return, ACTIONS(659), 1, - anon_sym_BSLASH, + anon_sym_DOLLAR, ACTIONS(661), 1, - sym_name_identifier, + anon_sym_BSLASH, ACTIONS(663), 1, - sym_operator, + sym_name_identifier, ACTIONS(665), 1, + sym_operator, + STATE(509), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [9130] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN, ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2597), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [9285] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, + anon_sym_return, ACTIONS(673), 1, - anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, ACTIONS(677), 1, - anon_sym_return, + sym_name_identifier, ACTIONS(679), 1, + sym_operator, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(2648), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [9237] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_return, + ACTIONS(659), 1, anon_sym_DOLLAR, + ACTIONS(661), 1, + anon_sym_BSLASH, + ACTIONS(663), 1, + sym_name_identifier, + ACTIONS(665), 1, + sym_operator, + STATE(509), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [9344] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, - sym_name_identifier, + anon_sym_LPAREN, ACTIONS(685), 1, - sym_operator, + anon_sym_return, ACTIONS(687), 1, - sym_float_number_literal, + anon_sym_DOLLAR, ACTIONS(689), 1, - sym_number_literal, + anon_sym_BSLASH, ACTIONS(691), 1, - anon_sym_DQUOTE, + anon_sym_LBRACK, ACTIONS(693), 1, - anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [9394] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_return, - ACTIONS(547), 1, - anon_sym_DOLLAR, - ACTIONS(549), 1, - anon_sym_BSLASH, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(553), 1, sym_name_identifier, - ACTIONS(555), 1, + ACTIONS(695), 1, sym_operator, - ACTIONS(557), 1, + ACTIONS(697), 1, sym_float_number_literal, - ACTIONS(559), 1, + ACTIONS(699), 1, sym_number_literal, - ACTIONS(561), 1, + ACTIONS(701), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(703), 1, anon_sym_SQUOTE, - STATE(569), 1, + STATE(519), 1, sym_name_expression, - STATE(585), 1, + STATE(555), 1, sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1662), 1, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, sym_subexpression, - STATE(1675), 1, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, aux_sym_name_expression_repeat2, - STATE(2202), 1, + STATE(2339), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -35412,77 +36478,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(543), 2, + ACTIONS(683), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1251), 2, + STATE(721), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(729), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [9503] = 31, + [9451] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(243), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(245), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(574), 1, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(1207), 1, sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1396), 1, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, + STATE(2233), 1, aux_sym_name_expression_repeat2, - STATE(2211), 1, + STATE(2352), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2631), 1, + sym_subexpression, + STATE(2957), 1, + sym_expression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -35490,77 +36555,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(229), 2, + ACTIONS(627), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [9612] = 31, + [9558] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(699), 1, + ACTIONS(685), 1, anon_sym_return, - ACTIONS(701), 1, + ACTIONS(687), 1, anon_sym_DOLLAR, - ACTIONS(703), 1, + ACTIONS(689), 1, anon_sym_BSLASH, - ACTIONS(705), 1, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, sym_name_identifier, - ACTIONS(707), 1, + ACTIONS(695), 1, sym_operator, - ACTIONS(709), 1, + ACTIONS(697), 1, sym_float_number_literal, - ACTIONS(711), 1, + ACTIONS(699), 1, sym_number_literal, - ACTIONS(713), 1, + ACTIONS(701), 1, anon_sym_DQUOTE, - ACTIONS(715), 1, + ACTIONS(703), 1, anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, + STATE(519), 1, sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, + STATE(563), 1, + sym_expression, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -35568,77 +36632,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(697), 2, + ACTIONS(683), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1929), 2, + STATE(721), 2, sym_string_literal, sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(729), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [9721] = 31, + [9665] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(243), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(245), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(574), 1, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(1207), 1, sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(756), 1, - sym_expression, - STATE(1396), 1, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, + STATE(2233), 1, aux_sym_name_expression_repeat2, - STATE(2211), 1, + STATE(2352), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2631), 1, + sym_subexpression, + STATE(2901), 1, + sym_expression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -35646,77 +36709,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(229), 2, + ACTIONS(627), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [9830] = 31, + [9772] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(551), 1, + ACTIONS(681), 1, + anon_sym_LPAREN, + ACTIONS(685), 1, + anon_sym_return, + ACTIONS(687), 1, + anon_sym_DOLLAR, + ACTIONS(689), 1, + anon_sym_BSLASH, + ACTIONS(691), 1, anon_sym_LBRACK, + ACTIONS(693), 1, + sym_name_identifier, ACTIONS(695), 1, - anon_sym_LPAREN, + sym_operator, + ACTIONS(697), 1, + sym_float_number_literal, ACTIONS(699), 1, - anon_sym_return, + sym_number_literal, ACTIONS(701), 1, - anon_sym_DOLLAR, + anon_sym_DQUOTE, ACTIONS(703), 1, - anon_sym_BSLASH, - ACTIONS(705), 1, - sym_name_identifier, - ACTIONS(707), 1, - sym_operator, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, anon_sym_SQUOTE, - STATE(585), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, + STATE(519), 1, sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, + STATE(556), 1, + sym_expression, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -35724,857 +36786,292 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(697), 2, + ACTIONS(683), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1929), 2, + STATE(721), 2, sym_string_literal, sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(729), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [9939] = 31, + [9879] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, + ACTIONS(371), 1, anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, + ACTIONS(375), 1, sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, + ACTIONS(379), 1, sym_float_number_literal, - ACTIONS(243), 1, + ACTIONS(381), 1, sym_number_literal, - ACTIONS(245), 1, + ACTIONS(383), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(385), 1, anon_sym_SQUOTE, - STATE(574), 1, + ACTIONS(407), 1, + ts_builtin_sym_end, + STATE(717), 1, + sym_extended_name, + STATE(813), 1, sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(825), 1, sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, + STATE(920), 1, sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10048] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(729), 1, - sym_operator, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1458), 1, + STATE(2009), 1, aux_sym_name_expression_repeat1, - STATE(1509), 1, - sym_expression, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10157] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_return, - ACTIONS(745), 1, - anon_sym_DOLLAR, - ACTIONS(747), 1, - anon_sym_BSLASH, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(751), 1, - sym_operator, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - STATE(536), 1, - sym_name_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1449), 1, - aux_sym_name_expression_repeat1, - STATE(1475), 1, - sym_subexpression, - STATE(1558), 1, - sym_expression, - STATE(1761), 1, - aux_sym_name_expression_repeat2, - STATE(2223), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10266] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_return, - ACTIONS(701), 1, - anon_sym_DOLLAR, - ACTIONS(703), 1, - anon_sym_BSLASH, - ACTIONS(705), 1, - sym_name_identifier, - ACTIONS(707), 1, - sym_operator, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10375] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_return, - ACTIONS(701), 1, - anon_sym_DOLLAR, - ACTIONS(703), 1, - anon_sym_BSLASH, - ACTIONS(705), 1, - sym_name_identifier, - ACTIONS(707), 1, - sym_operator, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - STATE(589), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10484] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_return, - ACTIONS(701), 1, - anon_sym_DOLLAR, - ACTIONS(703), 1, - anon_sym_BSLASH, - ACTIONS(705), 1, - sym_name_identifier, - ACTIONS(707), 1, - sym_operator, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10593] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_return, - ACTIONS(701), 1, - anon_sym_DOLLAR, - ACTIONS(703), 1, - anon_sym_BSLASH, - ACTIONS(705), 1, - sym_name_identifier, - ACTIONS(707), 1, - sym_operator, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10702] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(565), 1, - anon_sym_LPAREN, - ACTIONS(569), 1, - anon_sym_return, - ACTIONS(571), 1, - anon_sym_DOLLAR, - ACTIONS(573), 1, - anon_sym_BSLASH, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(577), 1, - sym_name_identifier, - ACTIONS(579), 1, - sym_operator, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - STATE(561), 1, - sym_name_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1436), 1, - aux_sym_name_expression_repeat1, - STATE(1535), 1, - sym_subexpression, - STATE(1654), 1, - sym_expression, - STATE(1826), 1, - aux_sym_name_expression_repeat2, STATE(2252), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10811] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_return, - ACTIONS(547), 1, - anon_sym_DOLLAR, - ACTIONS(549), 1, - anon_sym_BSLASH, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(553), 1, - sym_name_identifier, - ACTIONS(555), 1, - sym_operator, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - STATE(569), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(685), 1, - sym_expression, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1662), 1, - sym_subexpression, - STATE(1675), 1, aux_sym_name_expression_repeat2, - STATE(2202), 1, + STATE(2498), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(543), 2, + ACTIONS(373), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1251), 2, + ACTIONS(377), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(333), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(930), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, + STATE(925), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [10920] = 31, + ACTIONS(409), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [9970] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_return, + ACTIONS(711), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, ACTIONS(717), 1, - anon_sym_LPAREN, + sym_operator, + STATE(561), 1, + sym_expression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [10077] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + ts_builtin_sym_end, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(719), 1, + anon_sym_COLON, ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, + anon_sym_LPAREN, ACTIONS(727), 1, - sym_name_identifier, + sym_float_number_literal, ACTIONS(729), 1, - sym_operator, + sym_number_literal, ACTIONS(731), 1, - sym_float_number_literal, + anon_sym_DQUOTE, ACTIONS(733), 1, - sym_number_literal, + anon_sym_SQUOTE, + STATE(807), 1, + sym_extended_name, + STATE(946), 1, + sym_type_subexpression, + STATE(951), 1, + sym_name_expression, + STATE(1009), 1, + sym_subexpression_token, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2538), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(723), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(725), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(510), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1084), 2, + sym_string_literal, + sym_char_literal, + STATE(1088), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 17, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [10170] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(665), 1, - sym_expression, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11029] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(541), 1, anon_sym_LPAREN, - ACTIONS(545), 1, + ACTIONS(739), 1, anon_sym_return, - ACTIONS(547), 1, + ACTIONS(741), 1, anon_sym_DOLLAR, - ACTIONS(549), 1, + ACTIONS(743), 1, anon_sym_BSLASH, - ACTIONS(551), 1, + ACTIONS(745), 1, anon_sym_LBRACK, - ACTIONS(553), 1, + ACTIONS(747), 1, sym_name_identifier, - ACTIONS(555), 1, + ACTIONS(749), 1, sym_operator, - ACTIONS(557), 1, + ACTIONS(751), 1, sym_float_number_literal, - ACTIONS(559), 1, + ACTIONS(753), 1, sym_number_literal, - ACTIONS(561), 1, + ACTIONS(755), 1, anon_sym_DQUOTE, - ACTIONS(563), 1, + ACTIONS(757), 1, anon_sym_SQUOTE, - STATE(569), 1, + STATE(500), 1, sym_name_expression, - STATE(591), 1, + STATE(559), 1, sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1662), 1, + STATE(973), 1, + sym_extended_name, + STATE(1548), 1, sym_subexpression, - STATE(1675), 1, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, aux_sym_name_expression_repeat2, - STATE(2202), 1, + STATE(2327), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -36582,832 +37079,776 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(543), 2, + ACTIONS(737), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1251), 2, + STATE(699), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11138] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_return, - ACTIONS(767), 1, - anon_sym_DOLLAR, - ACTIONS(769), 1, - anon_sym_BSLASH, - ACTIONS(771), 1, - sym_name_identifier, - ACTIONS(773), 1, - sym_operator, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(647), 1, + STATE(700), 3, sym_scoped_statement, - STATE(1069), 1, - sym_name_expression, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2324), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(695), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [11247] = 31, + [10277] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(783), 1, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(751), 1, + sym_extended_name, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [10384] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(2620), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [10491] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(369), 1, + anon_sym_COLON, + ACTIONS(759), 1, + anon_sym_LPAREN, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + STATE(855), 1, + sym_extended_name, + STATE(880), 1, + sym_name_expression, + STATE(945), 1, + sym_type_subexpression, + STATE(1025), 1, + sym_subexpression_token, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2517), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(761), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(765), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(487), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1152), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(343), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1153), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 15, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [10584] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(681), 1, + anon_sym_LPAREN, + ACTIONS(685), 1, + anon_sym_return, + ACTIONS(687), 1, + anon_sym_DOLLAR, + ACTIONS(689), 1, + anon_sym_BSLASH, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, + sym_name_identifier, + ACTIONS(695), 1, + sym_operator, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + STATE(519), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, + sym_subexpression, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(683), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [10691] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + ts_builtin_sym_end, + ACTIONS(775), 1, + anon_sym_COLON, + ACTIONS(777), 1, + anon_sym_LPAREN, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(785), 1, + sym_float_number_literal, ACTIONS(787), 1, - anon_sym_return, + sym_number_literal, ACTIONS(789), 1, - anon_sym_DOLLAR, + anon_sym_DQUOTE, ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2874), 1, - sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11356] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, STATE(750), 1, - sym_expression, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11465] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_return, - ACTIONS(767), 1, - anon_sym_DOLLAR, - ACTIONS(769), 1, - anon_sym_BSLASH, - ACTIONS(771), 1, - sym_name_identifier, - ACTIONS(773), 1, - sym_operator, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - STATE(585), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1069), 1, + STATE(898), 1, + sym_type_subexpression, + STATE(981), 1, sym_name_expression, - STATE(1444), 1, + STATE(1186), 1, + sym_subexpression_token, + STATE(1958), 1, aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2324), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11574] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_return, - ACTIONS(547), 1, - anon_sym_DOLLAR, - ACTIONS(549), 1, - anon_sym_BSLASH, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(553), 1, - sym_name_identifier, - ACTIONS(555), 1, - sym_operator, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - STATE(569), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(681), 1, - sym_expression, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1662), 1, - sym_subexpression, - STATE(1675), 1, aux_sym_name_expression_repeat2, - STATE(2202), 1, + STATE(2470), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(543), 2, + ACTIONS(779), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1251), 2, + ACTIONS(783), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(505), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(999), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11683] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(613), 1, + STATE(1000), 3, sym_scoped_statement, - STATE(748), 1, - sym_expression, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11792] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(685), 1, + ACTIONS(345), 17, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, sym_operator, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [11901] = 31, + [10784] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(369), 1, + anon_sym_COLON, + ACTIONS(793), 1, anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, + ACTIONS(797), 1, sym_name_identifier, - ACTIONS(685), 1, - sym_operator, - ACTIONS(687), 1, + ACTIONS(801), 1, sym_float_number_literal, - ACTIONS(689), 1, + ACTIONS(803), 1, sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [12010] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [12119] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, ACTIONS(805), 1, + anon_sym_DQUOTE, + ACTIONS(807), 1, + anon_sym_SQUOTE, + STATE(787), 1, + sym_extended_name, + STATE(980), 1, + sym_name_expression, + STATE(982), 1, + sym_type_subexpression, + STATE(1068), 1, + sym_subexpression_token, + STATE(1949), 1, + aux_sym_name_expression_repeat1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2542), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(795), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(799), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(502), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1079), 2, + sym_string_literal, + sym_char_literal, + STATE(1080), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [10877] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(709), 1, anon_sym_return, - ACTIONS(811), 1, + ACTIONS(711), 1, anon_sym_DOLLAR, - ACTIONS(813), 1, + ACTIONS(713), 1, anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(717), 1, + sym_operator, + STATE(551), 1, + sym_expression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [10984] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(389), 1, + anon_sym_LPAREN, + ACTIONS(393), 1, + sym_name_identifier, + ACTIONS(397), 1, + sym_float_number_literal, + ACTIONS(399), 1, + sym_number_literal, + ACTIONS(401), 1, + anon_sym_DQUOTE, + ACTIONS(403), 1, + anon_sym_SQUOTE, + ACTIONS(407), 1, + ts_builtin_sym_end, + STATE(769), 1, + sym_extended_name, + STATE(785), 1, + sym_type_subexpression, + STATE(815), 1, + sym_name_expression, + STATE(985), 1, + sym_subexpression_token, + STATE(1960), 1, + aux_sym_name_expression_repeat1, + STATE(2260), 1, + aux_sym_name_expression_repeat2, + STATE(2535), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(391), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(395), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(276), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(934), 2, + sym_string_literal, + sym_char_literal, + STATE(931), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [11075] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(739), 1, + anon_sym_return, + ACTIONS(741), 1, + anon_sym_DOLLAR, + ACTIONS(743), 1, + anon_sym_BSLASH, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + sym_name_identifier, + ACTIONS(749), 1, + sym_operator, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + STATE(500), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(973), 1, + sym_extended_name, + STATE(1548), 1, + sym_subexpression, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2327), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(737), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [11182] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(809), 1, + anon_sym_LPAREN, ACTIONS(815), 1, sym_name_identifier, - ACTIONS(817), 1, - sym_operator, - ACTIONS(819), 1, - sym_float_number_literal, ACTIONS(821), 1, + sym_float_number_literal, + ACTIONS(824), 1, sym_number_literal, - ACTIONS(823), 1, + ACTIONS(827), 1, anon_sym_DQUOTE, - ACTIONS(825), 1, + ACTIONS(830), 1, anon_sym_SQUOTE, - STATE(513), 1, - sym_name_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1470), 1, - sym_subexpression, - STATE(1526), 1, - sym_expression, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2184), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(769), 1, + sym_extended_name, + STATE(785), 1, sym_type_subexpression, + STATE(815), 1, + sym_name_expression, + STATE(985), 1, + sym_subexpression_token, + STATE(1960), 1, + aux_sym_name_expression_repeat1, + STATE(2260), 1, + aux_sym_name_expression_repeat2, + STATE(2535), 1, + aux_sym_reference_expression_repeat1, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(807), 2, + ACTIONS(812), 2, anon_sym_TILDE, anon_sym_AT, - STATE(929), 2, + ACTIONS(818), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(276), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(934), 2, sym_string_literal, sym_char_literal, - STATE(944), 2, - sym_extended_name, + STATE(931), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [12228] = 31, + ACTIONS(413), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [11273] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, + ACTIONS(387), 1, + anon_sym_COLON, ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, + anon_sym_LPAREN, ACTIONS(837), 1, sym_name_identifier, - ACTIONS(839), 1, - sym_operator, ACTIONS(841), 1, sym_float_number_literal, ACTIONS(843), 1, @@ -37416,101 +37857,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - STATE(542), 1, + STATE(833), 1, + sym_extended_name, + STATE(906), 1, sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(685), 1, - sym_expression, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(968), 1, sym_type_subexpression, + STATE(1085), 1, + sym_subexpression_token, + STATE(1964), 1, + aux_sym_name_expression_repeat1, + STATE(2282), 1, + aux_sym_name_expression_repeat2, + STATE(2506), 1, + aux_sym_reference_expression_repeat1, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, + ACTIONS(835), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1084), 2, + ACTIONS(839), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(492), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1199), 2, sym_string_literal, sym_char_literal, - STATE(1104), 2, - sym_extended_name, + ACTIONS(343), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1198), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [12337] = 31, + ACTIONS(345), 15, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [11366] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, + ACTIONS(735), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(739), 1, anon_sym_return, - ACTIONS(767), 1, + ACTIONS(741), 1, anon_sym_DOLLAR, - ACTIONS(769), 1, + ACTIONS(743), 1, anon_sym_BSLASH, - ACTIONS(771), 1, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, sym_name_identifier, - ACTIONS(773), 1, + ACTIONS(749), 1, sym_operator, - ACTIONS(775), 1, + ACTIONS(751), 1, sym_float_number_literal, - ACTIONS(777), 1, + ACTIONS(753), 1, sym_number_literal, - ACTIONS(779), 1, + ACTIONS(755), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(757), 1, anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1069), 1, + STATE(500), 1, sym_name_expression, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2324), 1, + STATE(563), 1, + sym_expression, + STATE(973), 1, + sym_extended_name, + STATE(1548), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2327), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -37518,86 +37959,1627 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(763), 2, + ACTIONS(737), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1680), 2, + STATE(699), 2, sym_string_literal, sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(695), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [12446] = 22, + [11473] = 30, ACTIONS(3), 1, sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, ACTIONS(849), 1, anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_return, ACTIONS(855), 1, + anon_sym_DOLLAR, + ACTIONS(857), 1, + anon_sym_BSLASH, + ACTIONS(859), 1, sym_name_identifier, ACTIONS(861), 1, - sym_float_number_literal, - ACTIONS(864), 1, - sym_number_literal, - ACTIONS(867), 1, - anon_sym_DQUOTE, - ACTIONS(870), 1, - anon_sym_SQUOTE, - STATE(767), 1, - sym_type_subexpression, - STATE(783), 1, - sym_subexpression_token, - STATE(1387), 1, + sym_operator, + STATE(559), 1, + sym_expression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, aux_sym_name_expression_repeat1, - STATE(1665), 1, + STATE(2215), 1, aux_sym_name_expression_repeat2, - STATE(2358), 1, + STATE(2341), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(852), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(858), 2, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(326), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(690), 2, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, sym_string_literal, sym_char_literal, - STATE(764), 2, - sym_extended_name, - sym_literal, - STATE(937), 2, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [11580] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(739), 1, + anon_sym_return, + ACTIONS(741), 1, + anon_sym_DOLLAR, + ACTIONS(743), 1, + anon_sym_BSLASH, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + sym_name_identifier, + ACTIONS(749), 1, + sym_operator, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + STATE(500), 1, sym_name_expression, - ACTIONS(385), 3, + STATE(555), 1, + sym_expression, + STATE(973), 1, + sym_extended_name, + STATE(1548), 1, + sym_subexpression, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2327), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(737), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [11687] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [11794] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_return, + ACTIONS(869), 1, + anon_sym_DOLLAR, + ACTIONS(871), 1, + anon_sym_BSLASH, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + sym_operator, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(269), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(855), 1, + sym_extended_name, + STATE(1500), 1, + sym_subexpression, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [11901] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12008] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12115] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_return, + ACTIONS(869), 1, + anon_sym_DOLLAR, + ACTIONS(871), 1, + anon_sym_BSLASH, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + sym_operator, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(269), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(855), 1, + sym_extended_name, + STATE(1500), 1, + sym_subexpression, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12222] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(2896), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12329] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_return, + ACTIONS(855), 1, + anon_sym_DOLLAR, + ACTIONS(857), 1, + anon_sym_BSLASH, + ACTIONS(859), 1, + sym_name_identifier, + ACTIONS(861), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12436] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(751), 1, + sym_extended_name, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12543] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(2886), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12650] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_return, + ACTIONS(855), 1, + anon_sym_DOLLAR, + ACTIONS(857), 1, + anon_sym_BSLASH, + ACTIONS(859), 1, + sym_name_identifier, + ACTIONS(861), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12757] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_return, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + anon_sym_BSLASH, + ACTIONS(909), 1, + sym_operator, + STATE(181), 1, + sym_name_expression, + STATE(717), 1, + sym_extended_name, + STATE(1498), 1, + sym_subexpression, + STATE(1532), 1, + sym_expression, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12864] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [12971] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(2859), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [13078] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(751), 1, + sym_extended_name, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [13185] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(751), 1, + sym_extended_name, + STATE(808), 1, + sym_expression, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [13292] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(2993), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [13399] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [13506] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(751), 1, + sym_extended_name, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [13613] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(439), 1, + anon_sym_LPAREN, + ACTIONS(443), 1, + sym_name_identifier, + ACTIONS(447), 1, + sym_float_number_literal, + ACTIONS(449), 1, + sym_number_literal, + ACTIONS(451), 1, + anon_sym_DQUOTE, + ACTIONS(453), 1, + anon_sym_SQUOTE, + STATE(745), 1, + sym_extended_name, + STATE(816), 1, + sym_type_subexpression, + STATE(857), 1, + sym_name_expression, + STATE(947), 1, + sym_subexpression_token, + STATE(1970), 1, + aux_sym_name_expression_repeat1, + STATE(2308), 1, + aux_sym_name_expression_repeat2, + STATE(2489), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(441), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(445), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(301), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(876), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(387), 16, + STATE(875), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 16, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -37614,206 +39596,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [12537] = 31, + [13704] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(243), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(245), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(721), 1, - sym_expression, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [12646] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, + ACTIONS(667), 1, anon_sym_LPAREN, - ACTIONS(765), 1, + ACTIONS(671), 1, anon_sym_return, - ACTIONS(767), 1, - anon_sym_DOLLAR, - ACTIONS(769), 1, - anon_sym_BSLASH, - ACTIONS(771), 1, - sym_name_identifier, - ACTIONS(773), 1, - sym_operator, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - STATE(589), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1069), 1, - sym_name_expression, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2324), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [12755] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, anon_sym_DOLLAR, - ACTIONS(681), 1, + ACTIONS(675), 1, anon_sym_BSLASH, - ACTIONS(683), 1, + ACTIONS(677), 1, sym_name_identifier, - ACTIONS(685), 1, + ACTIONS(679), 1, sym_operator, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, + STATE(1240), 1, sym_name_expression, - STATE(1393), 1, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, aux_sym_name_expression_repeat1, - STATE(1830), 1, + STATE(2236), 1, aux_sym_name_expression_repeat2, - STATE(2228), 1, + STATE(2356), 1, aux_sym_reference_expression_repeat1, - STATE(2461), 1, + STATE(2638), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2994), 1, + sym_expression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -37821,527 +39645,145 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(675), 2, + ACTIONS(669), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1952), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [12864] = 31, + [13811] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, + ACTIONS(911), 1, anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_return, - ACTIONS(767), 1, - anon_sym_DOLLAR, - ACTIONS(769), 1, - anon_sym_BSLASH, - ACTIONS(771), 1, + ACTIONS(917), 1, sym_name_identifier, - ACTIONS(773), 1, - sym_operator, - ACTIONS(775), 1, + ACTIONS(923), 1, sym_float_number_literal, - ACTIONS(777), 1, + ACTIONS(926), 1, sym_number_literal, - ACTIONS(779), 1, + ACTIONS(929), 1, anon_sym_DQUOTE, - ACTIONS(781), 1, + ACTIONS(932), 1, anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1069), 1, - sym_name_expression, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2324), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(745), 1, + sym_extended_name, + STATE(816), 1, sym_type_subexpression, + STATE(857), 1, + sym_name_expression, + STATE(947), 1, + sym_subexpression_token, + STATE(1970), 1, + aux_sym_name_expression_repeat1, + STATE(2308), 1, + aux_sym_name_expression_repeat2, + STATE(2489), 1, + aux_sym_reference_expression_repeat1, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(763), 2, + ACTIONS(914), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1680), 2, + ACTIONS(920), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(301), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(876), 2, sym_string_literal, sym_char_literal, - STATE(1710), 2, - sym_extended_name, + ACTIONS(411), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(875), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [12973] = 31, + ACTIONS(413), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [13902] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(685), 1, - sym_operator, - ACTIONS(687), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(689), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(691), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(693), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [13082] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_return, - ACTIONS(767), 1, - anon_sym_DOLLAR, - ACTIONS(769), 1, - anon_sym_BSLASH, - ACTIONS(771), 1, - sym_name_identifier, - ACTIONS(773), 1, - sym_operator, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1069), 1, - sym_name_expression, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2324), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [13191] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - ts_builtin_sym_end, - ACTIONS(873), 1, - anon_sym_LPAREN, - ACTIONS(879), 1, - sym_name_identifier, ACTIONS(885), 1, - sym_float_number_literal, - ACTIONS(888), 1, - sym_number_literal, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, ACTIONS(891), 1, - anon_sym_DQUOTE, - ACTIONS(894), 1, - anon_sym_SQUOTE, - STATE(689), 1, - sym_type_subexpression, - STATE(814), 1, - sym_subexpression_token, - STATE(1440), 1, - aux_sym_name_expression_repeat1, - STATE(1833), 1, - aux_sym_name_expression_repeat2, - STATE(2334), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(876), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(882), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(333), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(691), 2, - sym_extended_name, - sym_literal, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - STATE(817), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [13282] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_return, - ACTIONS(525), 1, anon_sym_DOLLAR, - ACTIONS(527), 1, + ACTIONS(893), 1, anon_sym_BSLASH, - ACTIONS(529), 1, + ACTIONS(895), 1, sym_name_identifier, - ACTIONS(531), 1, - sym_operator, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(665), 1, - sym_expression, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [13391] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, ACTIONS(897), 1, - anon_sym_LPAREN, - ACTIONS(901), 1, - sym_name_identifier, - ACTIONS(905), 1, - sym_float_number_literal, - ACTIONS(907), 1, - sym_number_literal, - ACTIONS(909), 1, - anon_sym_DQUOTE, - ACTIONS(911), 1, - anon_sym_SQUOTE, - STATE(689), 1, - sym_type_subexpression, - STATE(814), 1, - sym_subexpression_token, - STATE(1440), 1, - aux_sym_name_expression_repeat1, - STATE(1833), 1, - aux_sym_name_expression_repeat2, - STATE(2334), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(899), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(903), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(333), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(691), 2, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, sym_extended_name, - sym_literal, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - STATE(817), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [13482] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, - ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(839), 1, - sym_operator, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(542), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(681), 1, - sym_expression, - STATE(1419), 1, + STATE(2006), 1, aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, + STATE(2242), 1, aux_sym_name_expression_repeat2, - STATE(2187), 1, + STATE(2361), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2633), 1, + sym_subexpression, + STATE(2995), 1, + sym_expression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -38349,353 +39791,41 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(829), 2, + ACTIONS(887), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1084), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [13591] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(897), 1, - anon_sym_LPAREN, - ACTIONS(901), 1, - sym_name_identifier, - ACTIONS(905), 1, - sym_float_number_literal, - ACTIONS(907), 1, - sym_number_literal, - ACTIONS(909), 1, - anon_sym_DQUOTE, - ACTIONS(911), 1, - anon_sym_SQUOTE, - STATE(689), 1, - sym_type_subexpression, - STATE(814), 1, - sym_subexpression_token, - STATE(1440), 1, - aux_sym_name_expression_repeat1, - STATE(1833), 1, - aux_sym_name_expression_repeat2, - STATE(2334), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(899), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(903), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(335), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(691), 2, - sym_extended_name, - sym_literal, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - STATE(817), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [13682] = 31, + [14009] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [13791] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [13900] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14009] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, ACTIONS(67), 1, sym_float_number_literal, ACTIONS(69), 1, @@ -38704,856 +39834,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, sym_operator, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(1257), 1, sym_name_expression, - STATE(1403), 1, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2246), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2364), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2613), 1, sym_subexpression, - STATE(2462), 1, + STATE(2996), 1, sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [14118] = 31, + [14116] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14227] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14336] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14445] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14554] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14663] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14772] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14881] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [14990] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15099] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(685), 1, - sym_operator, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15208] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, ACTIONS(67), 1, sym_float_number_literal, ACTIONS(69), 1, @@ -39562,961 +39911,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15317] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, + ACTIONS(625), 1, anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15426] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15535] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15644] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15753] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15862] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [15971] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2857), 1, - sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [16080] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_LPAREN, - ACTIONS(939), 1, - anon_sym_return, - ACTIONS(941), 1, - anon_sym_DOLLAR, - ACTIONS(943), 1, - anon_sym_BSLASH, - ACTIONS(945), 1, - sym_name_identifier, - ACTIONS(947), 1, - sym_operator, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - STATE(551), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1506), 1, - sym_subexpression, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2237), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(937), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [16189] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_LPAREN, - ACTIONS(939), 1, - anon_sym_return, - ACTIONS(941), 1, - anon_sym_DOLLAR, - ACTIONS(943), 1, - anon_sym_BSLASH, - ACTIONS(945), 1, - sym_name_identifier, - ACTIONS(947), 1, - sym_operator, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - STATE(551), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1506), 1, - sym_subexpression, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2237), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(937), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [16298] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [16407] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [16516] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, ACTIONS(629), 1, - anon_sym_LPAREN, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, ACTIONS(633), 1, - anon_sym_return, + anon_sym_BSLASH, ACTIONS(635), 1, - anon_sym_DOLLAR, + sym_name_identifier, ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(585), 1, + STATE(551), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, + STATE(1207), 1, sym_name_expression, - STATE(1437), 1, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, aux_sym_name_expression_repeat1, - STATE(1682), 1, + STATE(2233), 1, aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [14223] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_DOLLAR, + ACTIONS(943), 1, + anon_sym_BSLASH, + ACTIONS(945), 1, + sym_name_identifier, + ACTIONS(947), 1, + sym_operator, + STATE(551), 1, + sym_expression, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, + aux_sym_name_expression_repeat2, + STATE(2377), 1, + aux_sym_reference_expression_repeat1, + STATE(2463), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(937), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [14330] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + anon_sym_return, + ACTIONS(955), 1, + anon_sym_DOLLAR, + ACTIONS(957), 1, + anon_sym_BSLASH, + ACTIONS(959), 1, + sym_operator, + STATE(272), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(787), 1, + sym_extended_name, + STATE(1537), 1, + sym_subexpression, + STATE(1949), 1, + aux_sym_name_expression_repeat1, STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2334), 1, aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -40524,224 +40099,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(631), 2, + ACTIONS(951), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, + STATE(657), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(649), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [16625] = 31, + [14437] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, + ACTIONS(797), 1, sym_name_identifier, - ACTIONS(685), 1, - sym_operator, - ACTIONS(687), 1, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, sym_float_number_literal, - ACTIONS(689), 1, + ACTIONS(879), 1, sym_number_literal, - ACTIONS(691), 1, + ACTIONS(881), 1, anon_sym_DQUOTE, - ACTIONS(693), 1, + ACTIONS(883), 1, anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2589), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [16734] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - ts_builtin_sym_end, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + anon_sym_return, + ACTIONS(955), 1, + anon_sym_DOLLAR, ACTIONS(957), 1, - anon_sym_LPAREN, - ACTIONS(961), 1, - sym_name_identifier, - ACTIONS(965), 1, - sym_float_number_literal, - ACTIONS(967), 1, - sym_number_literal, - ACTIONS(969), 1, - anon_sym_DQUOTE, - ACTIONS(971), 1, - anon_sym_SQUOTE, - STATE(705), 1, - sym_type_subexpression, - STATE(859), 1, - sym_subexpression_token, - STATE(1413), 1, - aux_sym_name_expression_repeat1, - STATE(1781), 1, - aux_sym_name_expression_repeat2, - STATE(2391), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(959), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(963), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(369), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(704), 2, - sym_extended_name, - sym_literal, - STATE(713), 2, - sym_string_literal, - sym_char_literal, - STATE(806), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [16825] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, + ACTIONS(959), 1, sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, + STATE(272), 1, sym_name_expression, - STATE(591), 1, + STATE(556), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, + STATE(787), 1, + sym_extended_name, + STATE(1537), 1, sym_subexpression, - STATE(2255), 1, + STATE(1949), 1, + aux_sym_name_expression_repeat1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2334), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -40749,187 +40176,511 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(269), 2, + ACTIONS(951), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1334), 2, + STATE(657), 2, sym_string_literal, sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(649), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [16934] = 31, + [14544] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, + ACTIONS(797), 1, sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, sym_float_number_literal, - ACTIONS(667), 1, + ACTIONS(879), 1, sym_number_literal, - ACTIONS(669), 1, + ACTIONS(881), 1, anon_sym_DQUOTE, - ACTIONS(671), 1, + ACTIONS(883), 1, anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2594), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [17043] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + anon_sym_return, + ACTIONS(955), 1, + anon_sym_DOLLAR, ACTIONS(957), 1, - anon_sym_LPAREN, - ACTIONS(961), 1, - sym_name_identifier, - ACTIONS(965), 1, - sym_float_number_literal, - ACTIONS(967), 1, - sym_number_literal, - ACTIONS(969), 1, - anon_sym_DQUOTE, - ACTIONS(971), 1, - anon_sym_SQUOTE, - STATE(705), 1, - sym_type_subexpression, - STATE(859), 1, - sym_subexpression_token, - STATE(1413), 1, + anon_sym_BSLASH, + ACTIONS(959), 1, + sym_operator, + STATE(272), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(787), 1, + sym_extended_name, + STATE(1537), 1, + sym_subexpression, + STATE(1949), 1, aux_sym_name_expression_repeat1, - STATE(1781), 1, + STATE(2216), 1, aux_sym_name_expression_repeat2, - STATE(2391), 1, + STATE(2334), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(959), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(963), 2, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(371), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(704), 2, - sym_extended_name, - sym_literal, - STATE(713), 2, + ACTIONS(951), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, sym_string_literal, sym_char_literal, - STATE(806), 2, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [17134] = 31, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [14651] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(575), 1, + ACTIONS(797), 1, + sym_name_identifier, + ACTIONS(873), 1, anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + anon_sym_return, + ACTIONS(955), 1, + anon_sym_DOLLAR, + ACTIONS(957), 1, + anon_sym_BSLASH, + ACTIONS(959), 1, + sym_operator, + STATE(272), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(787), 1, + sym_extended_name, + STATE(1537), 1, + sym_subexpression, + STATE(1949), 1, + aux_sym_name_expression_repeat1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2334), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(951), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [14758] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(559), 1, + sym_expression, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [14865] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(2950), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [14972] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(751), 1, + sym_extended_name, + STATE(797), 1, + sym_expression, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [15079] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [15186] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, ACTIONS(935), 1, anon_sym_LPAREN, ACTIONS(939), 1, @@ -40942,31 +40693,21 @@ static const uint16_t ts_small_parse_table[] = { sym_name_identifier, ACTIONS(947), 1, sym_operator, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - STATE(551), 1, - sym_name_expression, - STATE(592), 1, + STATE(561), 1, sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1445), 1, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, aux_sym_name_expression_repeat1, - STATE(1506), 1, - sym_subexpression, - STATE(1798), 1, + STATE(2296), 1, aux_sym_name_expression_repeat2, - STATE(2237), 1, + STATE(2377), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2463), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -40974,84 +40715,1079 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, ACTIONS(937), 2, anon_sym_TILDE, anon_sym_AT, - STATE(954), 2, + STATE(657), 2, sym_string_literal, sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(649), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [17243] = 22, + [15293] = 30, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, - ts_builtin_sym_end, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(751), 1, + sym_extended_name, + STATE(799), 1, + sym_expression, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [15400] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(2923), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [15507] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(961), 1, + anon_sym_LPAREN, + ACTIONS(965), 1, + sym_name_identifier, + ACTIONS(969), 1, + sym_float_number_literal, + ACTIONS(971), 1, + sym_number_literal, ACTIONS(973), 1, - anon_sym_LPAREN, - ACTIONS(979), 1, - sym_name_identifier, - ACTIONS(985), 1, - sym_float_number_literal, - ACTIONS(988), 1, - sym_number_literal, - ACTIONS(991), 1, anon_sym_DQUOTE, - ACTIONS(994), 1, + ACTIONS(975), 1, anon_sym_SQUOTE, - STATE(705), 1, + STATE(850), 1, + sym_extended_name, + STATE(904), 1, + sym_name_expression, + STATE(905), 1, sym_type_subexpression, - STATE(859), 1, + STATE(1190), 1, sym_subexpression_token, - STATE(1413), 1, + STATE(1972), 1, aux_sym_name_expression_repeat1, - STATE(1781), 1, + STATE(2314), 1, aux_sym_name_expression_repeat2, - STATE(2391), 1, + STATE(2528), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(976), 2, + ACTIONS(963), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(982), 2, + ACTIONS(967), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(371), 2, + STATE(488), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(704), 2, - sym_extended_name, - sym_literal, - STATE(713), 2, + STATE(1097), 2, sym_string_literal, sym_char_literal, - STATE(806), 2, + STATE(1095), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [15600] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, sym_name_expression, - ACTIONS(387), 18, + STATE(559), 1, + sym_expression, + STATE(751), 1, + sym_extended_name, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [15707] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_return, + ACTIONS(983), 1, + anon_sym_DOLLAR, + ACTIONS(985), 1, + anon_sym_BSLASH, + ACTIONS(987), 1, + sym_operator, + STATE(271), 1, + sym_name_expression, + STATE(750), 1, + sym_extended_name, + STATE(1527), 1, + sym_subexpression, + STATE(1585), 1, + sym_expression, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [15814] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_return, + ACTIONS(995), 1, + anon_sym_DOLLAR, + ACTIONS(997), 1, + anon_sym_BSLASH, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1001), 1, + sym_operator, + STATE(503), 1, + sym_name_expression, + STATE(752), 1, + sym_expression, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [15921] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_return, + ACTIONS(659), 1, + anon_sym_DOLLAR, + ACTIONS(661), 1, + anon_sym_BSLASH, + ACTIONS(663), 1, + sym_name_identifier, + ACTIONS(665), 1, + sym_operator, + STATE(509), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [16028] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [16135] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(751), 1, + sym_extended_name, + STATE(802), 1, + sym_expression, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [16242] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_return, + ACTIONS(673), 1, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(679), 1, + sym_operator, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(2851), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [16349] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [16456] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_return, + ACTIONS(659), 1, + anon_sym_DOLLAR, + ACTIONS(661), 1, + anon_sym_BSLASH, + ACTIONS(663), 1, + sym_name_identifier, + ACTIONS(665), 1, + sym_operator, + STATE(509), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [16563] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(1801), 1, + sym_expression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [16670] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + ts_builtin_sym_end, + ACTIONS(457), 1, + anon_sym_LPAREN, + ACTIONS(461), 1, + sym_name_identifier, + ACTIONS(465), 1, + sym_float_number_literal, + ACTIONS(467), 1, + sym_number_literal, + ACTIONS(469), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + anon_sym_SQUOTE, + STATE(723), 1, + sym_extended_name, + STATE(818), 1, + sym_name_expression, + STATE(840), 1, + sym_type_subexpression, + STATE(897), 1, + sym_subexpression_token, + STATE(1976), 1, + aux_sym_name_expression_repeat1, + STATE(2320), 1, + aux_sym_name_expression_repeat2, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(459), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(463), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(338), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(972), 2, + sym_string_literal, + sym_char_literal, + STATE(974), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 18, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -41070,50 +41806,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH_GT, sym_operator, - [17334] = 31, + [16761] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(685), 1, - sym_operator, - ACTIONS(687), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(689), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(691), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(693), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(1207), 1, sym_name_expression, - STATE(1393), 1, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, aux_sym_name_expression_repeat1, - STATE(1830), 1, + STATE(2233), 1, aux_sym_name_expression_repeat2, - STATE(2228), 1, + STATE(2352), 1, aux_sym_reference_expression_repeat1, - STATE(2461), 1, + STATE(2631), 1, sym_subexpression, - STATE(2604), 1, + STATE(2846), 1, sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -41121,155 +41855,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(675), 2, + ACTIONS(627), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1952), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [17443] = 31, + [16868] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_return, + ACTIONS(645), 1, + anon_sym_DOLLAR, + ACTIONS(647), 1, + anon_sym_BSLASH, + ACTIONS(649), 1, + sym_name_identifier, ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, + STATE(265), 1, sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2735), 1, + STATE(732), 1, sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, + STATE(807), 1, sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [17552] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_LPAREN, - ACTIONS(939), 1, - anon_sym_return, - ACTIONS(941), 1, - anon_sym_DOLLAR, - ACTIONS(943), 1, - anon_sym_BSLASH, - ACTIONS(945), 1, - sym_name_identifier, - ACTIONS(947), 1, - sym_operator, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - STATE(551), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1506), 1, + STATE(1530), 1, sym_subexpression, - STATE(1798), 1, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, aux_sym_name_expression_repeat2, - STATE(2237), 1, + STATE(2336), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -41277,502 +41932,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(937), 2, + ACTIONS(641), 2, anon_sym_TILDE, anon_sym_AT, - STATE(954), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [17661] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_LPAREN, - ACTIONS(939), 1, - anon_sym_return, - ACTIONS(941), 1, - anon_sym_DOLLAR, - ACTIONS(943), 1, - anon_sym_BSLASH, - ACTIONS(945), 1, - sym_name_identifier, - ACTIONS(947), 1, - sym_operator, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - STATE(551), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(647), 1, + STATE(587), 3, sym_scoped_statement, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1506), 1, - sym_subexpression, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2237), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(937), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [17770] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [17879] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(760), 1, - sym_expression, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [17988] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(757), 1, - sym_expression, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [18097] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_LPAREN, - ACTIONS(939), 1, - anon_sym_return, - ACTIONS(941), 1, - anon_sym_DOLLAR, - ACTIONS(943), 1, - anon_sym_BSLASH, - ACTIONS(945), 1, - sym_name_identifier, - ACTIONS(947), 1, - sym_operator, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - STATE(551), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1506), 1, - sym_subexpression, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2237), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(937), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [18206] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [18315] = 31, + [16975] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, @@ -41797,25 +41985,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(187), 1, sym_operator, - STATE(586), 1, + STATE(561), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2390), 1, + STATE(2488), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -41826,914 +42012,73 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [18424] = 31, + [17082] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [18533] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RBRACE, - ACTIONS(997), 1, - anon_sym_LPAREN, - ACTIONS(1001), 1, - sym_name_identifier, - ACTIONS(1005), 1, - sym_float_number_literal, - ACTIONS(1007), 1, - sym_number_literal, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - ACTIONS(1011), 1, - anon_sym_SQUOTE, - STATE(724), 1, - sym_type_subexpression, - STATE(920), 1, - sym_subexpression_token, - STATE(1410), 1, - aux_sym_name_expression_repeat1, - STATE(1765), 1, - aux_sym_name_expression_repeat2, - STATE(2381), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(999), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1003), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(386), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(723), 2, - sym_extended_name, - sym_literal, - STATE(738), 2, - sym_string_literal, - sym_char_literal, - STATE(910), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [18624] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [18733] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2677), 1, - sym_expression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [18842] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RBRACE, - ACTIONS(997), 1, - anon_sym_LPAREN, - ACTIONS(1001), 1, - sym_name_identifier, - ACTIONS(1005), 1, - sym_float_number_literal, - ACTIONS(1007), 1, - sym_number_literal, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - ACTIONS(1011), 1, - anon_sym_SQUOTE, - STATE(724), 1, - sym_type_subexpression, - STATE(920), 1, - sym_subexpression_token, - STATE(1410), 1, - aux_sym_name_expression_repeat1, - STATE(1765), 1, - aux_sym_name_expression_repeat2, - STATE(2381), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(999), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1003), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(398), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(723), 2, - sym_extended_name, - sym_literal, - STATE(738), 2, - sym_string_literal, - sym_char_literal, - STATE(910), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [18933] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(757), 1, - sym_expression, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19042] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19151] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19260] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(677), 1, - anon_sym_return, - ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(685), 1, - sym_operator, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2777), 1, - sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19369] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, + ACTIONS(697), 1, sym_float_number_literal, - ACTIONS(243), 1, + ACTIONS(699), 1, sym_number_literal, - ACTIONS(245), 1, + ACTIONS(701), 1, anon_sym_DQUOTE, - ACTIONS(247), 1, + ACTIONS(703), 1, anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(760), 1, - sym_expression, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19478] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, + ACTIONS(989), 1, anon_sym_LPAREN, - ACTIONS(271), 1, + ACTIONS(993), 1, anon_sym_return, - ACTIONS(273), 1, + ACTIONS(995), 1, anon_sym_DOLLAR, - ACTIONS(275), 1, + ACTIONS(997), 1, anon_sym_BSLASH, - ACTIONS(277), 1, + ACTIONS(999), 1, sym_name_identifier, - ACTIONS(279), 1, + ACTIONS(1001), 1, sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, + STATE(503), 1, sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(750), 1, - sym_expression, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19587] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, STATE(748), 1, sym_expression, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, sym_subexpression, - STATE(2255), 1, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -42741,50 +42086,110 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(269), 2, + ACTIONS(991), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1334), 2, + STATE(721), 2, sym_string_literal, sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(729), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [19696] = 31, + [17189] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(1003), 1, + anon_sym_LPAREN, + ACTIONS(1009), 1, + sym_name_identifier, + ACTIONS(1015), 1, + sym_float_number_literal, + ACTIONS(1018), 1, + sym_number_literal, + ACTIONS(1021), 1, + anon_sym_DQUOTE, + ACTIONS(1024), 1, + anon_sym_SQUOTE, + STATE(717), 1, + sym_extended_name, + STATE(813), 1, + sym_name_expression, + STATE(825), 1, + sym_type_subexpression, + STATE(920), 1, + sym_subexpression_token, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2498), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1006), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1012), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(333), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(930), 2, + sym_string_literal, + sym_char_literal, + STATE(925), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [17280] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, ACTIONS(67), 1, sym_float_number_literal, ACTIONS(69), 1, @@ -42793,344 +42198,951 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19805] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(721), 1, - sym_expression, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [19914] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1017), 1, - anon_sym_return, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(1021), 1, - anon_sym_BSLASH, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1025), 1, - sym_operator, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - STATE(530), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1501), 1, - sym_subexpression, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2198), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1015), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20023] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, - sym_float_number_literal, ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN, ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2829), 1, + anon_sym_return, + ACTIONS(673), 1, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(679), 1, + sym_operator, + STATE(551), 1, sym_expression, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(653), 2, + ACTIONS(669), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [20132] = 22, + [17387] = 30, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, - sym_name_identifier, - ACTIONS(1047), 1, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(1050), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(1053), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(1056), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(724), 1, - sym_type_subexpression, - STATE(920), 1, - sym_subexpression_token, - STATE(1410), 1, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, aux_sym_name_expression_repeat1, - STATE(1765), 1, + STATE(2211), 1, aux_sym_name_expression_repeat2, - STATE(2381), 1, + STATE(2332), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1038), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1044), 2, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(398), 2, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [17494] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_return, + ACTIONS(983), 1, + anon_sym_DOLLAR, + ACTIONS(985), 1, + anon_sym_BSLASH, + ACTIONS(987), 1, + sym_operator, + STATE(271), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(750), 1, + sym_extended_name, + STATE(1527), 1, + sym_subexpression, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [17601] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_return, + ACTIONS(995), 1, + anon_sym_DOLLAR, + ACTIONS(997), 1, + anon_sym_BSLASH, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1001), 1, + sym_operator, + STATE(503), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [17708] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(1027), 1, + anon_sym_LPAREN, + ACTIONS(1033), 1, + sym_name_identifier, + ACTIONS(1039), 1, + sym_float_number_literal, + ACTIONS(1042), 1, + sym_number_literal, + ACTIONS(1045), 1, + anon_sym_DQUOTE, + ACTIONS(1048), 1, + anon_sym_SQUOTE, + STATE(723), 1, + sym_extended_name, + STATE(818), 1, + sym_name_expression, + STATE(840), 1, + sym_type_subexpression, + STATE(897), 1, + sym_subexpression_token, + STATE(1976), 1, + aux_sym_name_expression_repeat1, + STATE(2320), 1, + aux_sym_name_expression_repeat2, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1030), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1036), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(338), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(723), 2, - sym_extended_name, - sym_literal, - STATE(738), 2, + STATE(972), 2, sym_string_literal, sym_char_literal, - STATE(910), 2, + STATE(974), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + [17799] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_return, + ACTIONS(995), 1, + anon_sym_DOLLAR, + ACTIONS(997), 1, + anon_sym_BSLASH, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1001), 1, + sym_operator, + STATE(503), 1, sym_name_expression, - ACTIONS(387), 18, + STATE(556), 1, + sym_expression, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [17906] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_return, + ACTIONS(995), 1, + anon_sym_DOLLAR, + ACTIONS(997), 1, + anon_sym_BSLASH, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1001), 1, + sym_operator, + STATE(503), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [18013] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_return, + ACTIONS(995), 1, + anon_sym_DOLLAR, + ACTIONS(997), 1, + anon_sym_BSLASH, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1001), 1, + sym_operator, + STATE(503), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [18120] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_return, + ACTIONS(673), 1, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(679), 1, + sym_operator, + STATE(559), 1, + sym_expression, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [18227] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + ts_builtin_sym_end, + ACTIONS(1051), 1, + anon_sym_COLON, + ACTIONS(1053), 1, + anon_sym_LPAREN, + ACTIONS(1057), 1, + sym_name_identifier, + ACTIONS(1061), 1, + sym_float_number_literal, + ACTIONS(1063), 1, + sym_number_literal, + ACTIONS(1065), 1, + anon_sym_DQUOTE, + ACTIONS(1067), 1, + anon_sym_SQUOTE, + STATE(768), 1, + sym_extended_name, + STATE(890), 1, + sym_type_subexpression, + STATE(963), 1, + sym_name_expression, + STATE(1155), 1, + sym_subexpression_token, + STATE(1980), 1, + aux_sym_name_expression_repeat1, + STATE(2176), 1, + aux_sym_name_expression_repeat2, + STATE(2492), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1055), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1059), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(493), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1114), 2, + sym_string_literal, + sym_char_literal, + STATE(1116), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 17, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [18320] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(2930), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [18427] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_return, + ACTIONS(673), 1, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(679), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [18534] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RBRACE, + ACTIONS(473), 1, + anon_sym_LPAREN, + ACTIONS(477), 1, + sym_name_identifier, + ACTIONS(481), 1, + sym_float_number_literal, + ACTIONS(483), 1, + sym_number_literal, + ACTIONS(485), 1, + anon_sym_DQUOTE, + ACTIONS(487), 1, + anon_sym_SQUOTE, + STATE(778), 1, + sym_extended_name, + STATE(794), 1, + sym_name_expression, + STATE(854), 1, + sym_type_subexpression, + STATE(879), 1, + sym_subexpression_token, + STATE(1981), 1, + aux_sym_name_expression_repeat1, + STATE(2302), 1, + aux_sym_name_expression_repeat2, + STATE(2540), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(475), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(479), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(347), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(961), 2, + sym_string_literal, + sym_char_literal, + STATE(953), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 18, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -43149,1688 +43161,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [20223] = 31, + [18625] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + anon_sym_RBRACE, + ACTIONS(1069), 1, + anon_sym_LPAREN, + ACTIONS(1075), 1, + sym_name_identifier, + ACTIONS(1081), 1, + sym_float_number_literal, + ACTIONS(1084), 1, + sym_number_literal, + ACTIONS(1087), 1, + anon_sym_DQUOTE, + ACTIONS(1090), 1, + anon_sym_SQUOTE, + STATE(778), 1, + sym_extended_name, + STATE(794), 1, + sym_name_expression, + STATE(854), 1, + sym_type_subexpression, + STATE(879), 1, + sym_subexpression_token, + STATE(1981), 1, + aux_sym_name_expression_repeat1, + STATE(2302), 1, + aux_sym_name_expression_repeat2, + STATE(2540), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1072), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1078), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(347), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(961), 2, + sym_string_literal, + sym_char_literal, + STATE(953), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [18716] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, - ACTIONS(657), 1, - anon_sym_DOLLAR, - ACTIONS(659), 1, - anon_sym_BSLASH, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(663), 1, - sym_operator, - ACTIONS(665), 1, + ACTIONS(67), 1, sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, + anon_sym_LPAREN, ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2848), 1, - sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20332] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, anon_sym_return, - ACTIONS(525), 1, - anon_sym_DOLLAR, - ACTIONS(527), 1, - anon_sym_BSLASH, - ACTIONS(529), 1, - sym_name_identifier, - ACTIONS(531), 1, - sym_operator, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20441] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_return, - ACTIONS(745), 1, - anon_sym_DOLLAR, - ACTIONS(747), 1, - anon_sym_BSLASH, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(751), 1, - sym_operator, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - STATE(536), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1449), 1, - aux_sym_name_expression_repeat1, - STATE(1475), 1, - sym_subexpression, - STATE(1761), 1, - aux_sym_name_expression_repeat2, - STATE(2223), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20550] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_return, - ACTIONS(525), 1, - anon_sym_DOLLAR, - ACTIONS(527), 1, - anon_sym_BSLASH, - ACTIONS(529), 1, - sym_name_identifier, - ACTIONS(531), 1, - sym_operator, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20659] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_return, - ACTIONS(745), 1, - anon_sym_DOLLAR, - ACTIONS(747), 1, - anon_sym_BSLASH, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(751), 1, - sym_operator, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - STATE(536), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1449), 1, - aux_sym_name_expression_repeat1, - STATE(1475), 1, - sym_subexpression, - STATE(1761), 1, - aux_sym_name_expression_repeat2, - STATE(2223), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20768] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_return, - ACTIONS(525), 1, - anon_sym_DOLLAR, - ACTIONS(527), 1, - anon_sym_BSLASH, - ACTIONS(529), 1, - sym_name_identifier, - ACTIONS(531), 1, - sym_operator, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20877] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_return, - ACTIONS(525), 1, - anon_sym_DOLLAR, - ACTIONS(527), 1, - anon_sym_BSLASH, - ACTIONS(529), 1, - sym_name_identifier, - ACTIONS(531), 1, - sym_operator, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [20986] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_return, - ACTIONS(525), 1, - anon_sym_DOLLAR, - ACTIONS(527), 1, - anon_sym_BSLASH, - ACTIONS(529), 1, - sym_name_identifier, - ACTIONS(531), 1, - sym_operator, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21095] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_return, - ACTIONS(745), 1, - anon_sym_DOLLAR, - ACTIONS(747), 1, - anon_sym_BSLASH, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(751), 1, - sym_operator, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - STATE(536), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1449), 1, - aux_sym_name_expression_repeat1, - STATE(1475), 1, - sym_subexpression, - STATE(1761), 1, - aux_sym_name_expression_repeat2, - STATE(2223), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21204] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_return, - ACTIONS(745), 1, - anon_sym_DOLLAR, - ACTIONS(747), 1, - anon_sym_BSLASH, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(751), 1, - sym_operator, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - STATE(536), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1449), 1, - aux_sym_name_expression_repeat1, - STATE(1475), 1, - sym_subexpression, - STATE(1761), 1, - aux_sym_name_expression_repeat2, - STATE(2223), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21313] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(523), 1, - anon_sym_return, - ACTIONS(525), 1, - anon_sym_DOLLAR, - ACTIONS(527), 1, - anon_sym_BSLASH, - ACTIONS(529), 1, - sym_name_identifier, - ACTIONS(531), 1, - sym_operator, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - STATE(517), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1482), 1, - sym_subexpression, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21422] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, ACTIONS(673), 1, - anon_sym_LPAREN, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, ACTIONS(677), 1, - anon_sym_return, + sym_name_identifier, ACTIONS(679), 1, - anon_sym_DOLLAR, - ACTIONS(681), 1, - anon_sym_BSLASH, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(685), 1, sym_operator, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2461), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - STATE(2850), 1, + STATE(563), 1, sym_expression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21531] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, + STATE(1991), 1, aux_sym_name_expression_repeat1, - STATE(1678), 1, + STATE(2236), 1, aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(1864), 1, - sym_expression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21640] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_return, - ACTIONS(745), 1, - anon_sym_DOLLAR, - ACTIONS(747), 1, - anon_sym_BSLASH, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(751), 1, - sym_operator, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - STATE(536), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1449), 1, - aux_sym_name_expression_repeat1, - STATE(1475), 1, - sym_subexpression, - STATE(1761), 1, - aux_sym_name_expression_repeat2, - STATE(2223), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21749] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(743), 1, - anon_sym_return, - ACTIONS(745), 1, - anon_sym_DOLLAR, - ACTIONS(747), 1, - anon_sym_BSLASH, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(751), 1, - sym_operator, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - STATE(536), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1449), 1, - aux_sym_name_expression_repeat1, - STATE(1475), 1, - sym_subexpression, - STATE(1761), 1, - aux_sym_name_expression_repeat2, - STATE(2223), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21858] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_return, - ACTIONS(1065), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 1, - anon_sym_BSLASH, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1071), 1, - sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [21967] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_return, - ACTIONS(1065), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 1, - anon_sym_BSLASH, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1071), 1, - sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22076] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_return, - ACTIONS(1065), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 1, - anon_sym_BSLASH, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1071), 1, - sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22185] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_return, - ACTIONS(1065), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 1, - anon_sym_BSLASH, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1071), 1, - sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22294] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_return, - ACTIONS(1065), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 1, - anon_sym_BSLASH, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1071), 1, - sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22403] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_return, - ACTIONS(1065), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 1, - anon_sym_BSLASH, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1071), 1, - sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22512] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -44838,1256 +43279,620 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1083), 2, + ACTIONS(669), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1784), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [22621] = 31, + [18823] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, + ACTIONS(455), 1, + anon_sym_COLON, ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, - sym_float_number_literal, + anon_sym_LPAREN, ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, + sym_name_identifier, ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2356), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22730] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2356), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22839] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, - ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(839), 1, - sym_operator, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(542), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [22948] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2356), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23057] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(756), 1, - sym_expression, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23166] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, - ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(839), 1, - sym_operator, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(542), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23275] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2356), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23384] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2356), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23493] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(721), 1, - sym_expression, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23602] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23711] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, - ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(839), 1, - sym_operator, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(542), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23820] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, - ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(839), 1, - sym_operator, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(542), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [23929] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, - ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(839), 1, - sym_operator, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(542), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [24038] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(831), 1, - anon_sym_return, - ACTIONS(833), 1, - anon_sym_DOLLAR, - ACTIONS(835), 1, - anon_sym_BSLASH, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(839), 1, - sym_operator, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - STATE(542), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1547), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [24147] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(231), 1, - anon_sym_return, - ACTIONS(233), 1, - anon_sym_DOLLAR, - ACTIONS(235), 1, - anon_sym_BSLASH, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(239), 1, - sym_operator, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - STATE(574), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1645), 1, - sym_subexpression, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [24256] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - ts_builtin_sym_end, ACTIONS(1103), 1, - anon_sym_LPAREN, - ACTIONS(1109), 1, - sym_name_identifier, - ACTIONS(1115), 1, + sym_number_literal, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + STATE(784), 1, + sym_extended_name, + STATE(873), 1, + sym_type_subexpression, + STATE(970), 1, + sym_name_expression, + STATE(1087), 1, + sym_subexpression_token, + STATE(1983), 1, + aux_sym_name_expression_repeat1, + STATE(2297), 1, + aux_sym_name_expression_repeat2, + STATE(2484), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1095), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1099), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(496), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1161), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(343), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1167), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 15, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [18916] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(1118), 1, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(2834), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19023] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_return, + ACTIONS(673), 1, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(679), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19130] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_return, + ACTIONS(659), 1, + anon_sym_DOLLAR, + ACTIONS(661), 1, + anon_sym_BSLASH, + ACTIONS(663), 1, + sym_name_identifier, + ACTIONS(665), 1, + sym_operator, + STATE(509), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19237] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(2824), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19344] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19451] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_return, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + anon_sym_BSLASH, + ACTIONS(909), 1, + sym_operator, + STATE(181), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(717), 1, + sym_extended_name, + STATE(1498), 1, + sym_subexpression, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19558] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(455), 1, + anon_sym_COLON, + ACTIONS(1109), 1, + anon_sym_LPAREN, + ACTIONS(1113), 1, + sym_name_identifier, + ACTIONS(1117), 1, + sym_float_number_literal, + ACTIONS(1119), 1, sym_number_literal, ACTIONS(1121), 1, anon_sym_DQUOTE, - ACTIONS(1124), 1, + ACTIONS(1123), 1, anon_sym_SQUOTE, - STATE(776), 1, + STATE(831), 1, + sym_extended_name, + STATE(909), 1, + sym_name_expression, + STATE(969), 1, sym_type_subexpression, - STATE(800), 1, + STATE(1034), 1, sym_subexpression_token, - STATE(1412), 1, + STATE(1940), 1, aux_sym_name_expression_repeat1, - STATE(1732), 1, + STATE(2270), 1, aux_sym_name_expression_repeat2, - STATE(2342), 1, + STATE(2475), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1106), 2, + ACTIONS(1111), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1112), 2, + ACTIONS(1115), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(436), 2, + STATE(506), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, + STATE(1189), 2, sym_string_literal, sym_char_literal, - STATE(879), 2, + STATE(1188), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 18, + sym_access_expression, + sym_literal, + ACTIONS(345), 17, anon_sym_namespace, - anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -46100,54 +43905,1900 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [24347] = 31, + [19651] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_return, + ACTIONS(995), 1, + anon_sym_DOLLAR, + ACTIONS(997), 1, + anon_sym_BSLASH, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1001), 1, + sym_operator, + STATE(503), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19758] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(993), 1, + anon_sym_return, + ACTIONS(995), 1, + anon_sym_DOLLAR, + ACTIONS(997), 1, + anon_sym_BSLASH, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1001), 1, + sym_operator, + STATE(503), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(812), 1, + sym_extended_name, + STATE(1609), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19865] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(205), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(207), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(580), 1, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(561), 1, + sym_expression, + STATE(1207), 1, sym_name_expression, - STATE(613), 1, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [19972] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_return, + ACTIONS(659), 1, + anon_sym_DOLLAR, + ACTIONS(661), 1, + anon_sym_BSLASH, + ACTIONS(663), 1, + sym_name_identifier, + ACTIONS(665), 1, + sym_operator, + STATE(509), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20079] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(551), 1, + sym_expression, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20186] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20293] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20400] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_return, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + anon_sym_BSLASH, + ACTIONS(909), 1, + sym_operator, + STATE(181), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(717), 1, + sym_extended_name, + STATE(1498), 1, + sym_subexpression, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20507] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_return, + ACTIONS(983), 1, + anon_sym_DOLLAR, + ACTIONS(985), 1, + anon_sym_BSLASH, + ACTIONS(987), 1, + sym_operator, + STATE(271), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(750), 1, + sym_extended_name, + STATE(1527), 1, + sym_subexpression, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20614] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_return, + ACTIONS(983), 1, + anon_sym_DOLLAR, + ACTIONS(985), 1, + anon_sym_BSLASH, + ACTIONS(987), 1, + sym_operator, + STATE(271), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(750), 1, + sym_extended_name, + STATE(1527), 1, + sym_subexpression, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20721] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20828] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + anon_sym_return, + ACTIONS(955), 1, + anon_sym_DOLLAR, + ACTIONS(957), 1, + anon_sym_BSLASH, + ACTIONS(959), 1, + sym_operator, + STATE(272), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(787), 1, + sym_extended_name, + STATE(1537), 1, + sym_subexpression, + STATE(1949), 1, + aux_sym_name_expression_repeat1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2334), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(951), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [20935] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + anon_sym_return, + ACTIONS(955), 1, + anon_sym_DOLLAR, + ACTIONS(957), 1, + anon_sym_BSLASH, + ACTIONS(959), 1, + sym_operator, + STATE(272), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(787), 1, + sym_extended_name, + STATE(1537), 1, + sym_subexpression, + STATE(1949), 1, + aux_sym_name_expression_repeat1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2334), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(951), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21042] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_return, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + anon_sym_BSLASH, + ACTIONS(909), 1, + sym_operator, + STATE(181), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(717), 1, + sym_extended_name, + STATE(1498), 1, + sym_subexpression, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21149] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21256] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(239), 1, + anon_sym_return, + ACTIONS(241), 1, + anon_sym_DOLLAR, + ACTIONS(243), 1, + anon_sym_BSLASH, + ACTIONS(245), 1, + sym_name_identifier, + ACTIONS(247), 1, + sym_operator, + STATE(533), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(751), 1, + sym_extended_name, + STATE(1641), 1, + sym_subexpression, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2367), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(237), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21363] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21470] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(808), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21577] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21684] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_return, + ACTIONS(983), 1, + anon_sym_DOLLAR, + ACTIONS(985), 1, + anon_sym_BSLASH, + ACTIONS(987), 1, + sym_operator, + STATE(271), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(750), 1, + sym_extended_name, + STATE(1527), 1, + sym_subexpression, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21791] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_return, + ACTIONS(983), 1, + anon_sym_DOLLAR, + ACTIONS(985), 1, + anon_sym_BSLASH, + ACTIONS(987), 1, + sym_operator, + STATE(271), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(750), 1, + sym_extended_name, + STATE(1527), 1, + sym_subexpression, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [21898] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_return, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + anon_sym_BSLASH, + ACTIONS(909), 1, + sym_operator, + STATE(181), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(717), 1, + sym_extended_name, + STATE(1498), 1, + sym_subexpression, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [22005] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [22112] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_return, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + anon_sym_BSLASH, + ACTIONS(909), 1, + sym_operator, + STATE(181), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(717), 1, + sym_extended_name, + STATE(1498), 1, + sym_subexpression, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [22219] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(681), 1, + anon_sym_LPAREN, + ACTIONS(685), 1, + anon_sym_return, + ACTIONS(687), 1, + anon_sym_DOLLAR, + ACTIONS(689), 1, + anon_sym_BSLASH, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, + sym_name_identifier, + ACTIONS(695), 1, + sym_operator, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + STATE(519), 1, + sym_name_expression, STATE(748), 1, sym_expression, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, sym_subexpression, - STATE(2191), 1, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -46155,146 +45806,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(191), 2, + ACTIONS(683), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1302), 2, + STATE(721), 2, sym_string_literal, sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(729), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [24456] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, - ACTIONS(617), 1, - sym_name_identifier, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - ACTIONS(1127), 1, - anon_sym_LPAREN, - STATE(776), 1, - sym_type_subexpression, - STATE(800), 1, - sym_subexpression_token, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2342), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1129), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1131), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(436), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(879), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [24547] = 31, + [22326] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(651), 1, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, anon_sym_LPAREN, - ACTIONS(655), 1, - anon_sym_return, ACTIONS(657), 1, - anon_sym_DOLLAR, + anon_sym_return, ACTIONS(659), 1, - anon_sym_BSLASH, + anon_sym_DOLLAR, ACTIONS(661), 1, - sym_name_identifier, + anon_sym_BSLASH, ACTIONS(663), 1, - sym_operator, + sym_name_identifier, ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, + sym_operator, + STATE(509), 1, sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2459), 1, - sym_subexpression, - STATE(2561), 1, + STATE(732), 1, sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -46302,146 +45883,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(653), 2, + ACTIONS(655), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [24656] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(617), 1, - sym_name_identifier, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - ACTIONS(1127), 1, - anon_sym_LPAREN, - STATE(776), 1, - sym_type_subexpression, - STATE(800), 1, - sym_subexpression_token, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2342), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1129), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1131), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(438), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(879), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [24747] = 31, + [22433] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(205), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(207), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(750), 1, + STATE(802), 1, sym_expression, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, sym_subexpression, - STATE(2191), 1, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -46449,77 +45960,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(191), 2, + ACTIONS(207), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1302), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [24856] = 31, + [22540] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_return, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(613), 1, - anon_sym_BSLASH, + anon_sym_LPAREN, ACTIONS(615), 1, - anon_sym_LBRACK, + anon_sym_return, ACTIONS(617), 1, - sym_name_identifier, + anon_sym_DOLLAR, ACTIONS(619), 1, - sym_operator, + anon_sym_BSLASH, ACTIONS(621), 1, - sym_float_number_literal, + sym_name_identifier, ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - STATE(440), 1, - sym_name_expression, - STATE(587), 1, + sym_operator, + STATE(561), 1, sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1412), 1, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, aux_sym_name_expression_repeat1, - STATE(1432), 1, - sym_subexpression, - STATE(1732), 1, + STATE(2246), 1, aux_sym_name_expression_repeat2, - STATE(2204), 1, + STATE(2364), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2613), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -46527,77 +46037,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(607), 2, + ACTIONS(613), 2, anon_sym_TILDE, anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(640), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [24965] = 31, + [22647] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(805), 1, + ACTIONS(681), 1, anon_sym_LPAREN, - ACTIONS(809), 1, + ACTIONS(685), 1, anon_sym_return, - ACTIONS(811), 1, + ACTIONS(687), 1, anon_sym_DOLLAR, - ACTIONS(813), 1, + ACTIONS(689), 1, anon_sym_BSLASH, - ACTIONS(815), 1, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, sym_name_identifier, - ACTIONS(817), 1, + ACTIONS(695), 1, sym_operator, - ACTIONS(819), 1, + ACTIONS(697), 1, sym_float_number_literal, - ACTIONS(821), 1, + ACTIONS(699), 1, sym_number_literal, - ACTIONS(823), 1, + ACTIONS(701), 1, anon_sym_DQUOTE, - ACTIONS(825), 1, + ACTIONS(703), 1, anon_sym_SQUOTE, - STATE(513), 1, + STATE(519), 1, sym_name_expression, - STATE(591), 1, + STATE(752), 1, sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1470), 1, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, sym_subexpression, - STATE(1694), 1, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, aux_sym_name_expression_repeat2, - STATE(2184), 1, + STATE(2339), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -46605,1871 +46114,153 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(807), 2, + ACTIONS(683), 2, anon_sym_TILDE, anon_sym_AT, - STATE(929), 2, + STATE(721), 2, sym_string_literal, sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(729), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [25074] = 31, + [22754] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_return, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + anon_sym_BSLASH, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1151), 1, + sym_operator, + STATE(499), 1, + sym_name_expression, + STATE(926), 1, + sym_extended_name, + STATE(1557), 1, + sym_subexpression, + STATE(1679), 1, + sym_expression, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [22861] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(799), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(801), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(803), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(589), 1, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(559), 1, sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, + STATE(1244), 1, sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, + STATE(1831), 1, sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25183] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_return, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(613), 1, - anon_sym_BSLASH, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(617), 1, - sym_name_identifier, - ACTIONS(619), 1, - sym_operator, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - STATE(440), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1412), 1, + STATE(2006), 1, aux_sym_name_expression_repeat1, - STATE(1432), 1, - sym_subexpression, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2204), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(607), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25292] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_return, - ACTIONS(811), 1, - anon_sym_DOLLAR, - ACTIONS(813), 1, - anon_sym_BSLASH, - ACTIONS(815), 1, - sym_name_identifier, - ACTIONS(817), 1, - sym_operator, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - STATE(513), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1470), 1, - sym_subexpression, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2184), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(807), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25401] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_return, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(613), 1, - anon_sym_BSLASH, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(617), 1, - sym_name_identifier, - ACTIONS(619), 1, - sym_operator, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - STATE(440), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1432), 1, - sym_subexpression, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2204), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(607), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25510] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_return, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(613), 1, - anon_sym_BSLASH, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(617), 1, - sym_name_identifier, - ACTIONS(619), 1, - sym_operator, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - STATE(440), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1432), 1, - sym_subexpression, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2204), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(607), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25619] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25728] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_return, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(613), 1, - anon_sym_BSLASH, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(617), 1, - sym_name_identifier, - ACTIONS(619), 1, - sym_operator, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - STATE(440), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1432), 1, - sym_subexpression, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2204), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(607), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25837] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2533), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [25946] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2520), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26055] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(609), 1, - anon_sym_return, - ACTIONS(611), 1, - anon_sym_DOLLAR, - ACTIONS(613), 1, - anon_sym_BSLASH, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(617), 1, - sym_name_identifier, - ACTIONS(619), 1, - sym_operator, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - STATE(440), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1432), 1, - sym_subexpression, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2204), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(607), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26164] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_return, - ACTIONS(811), 1, - anon_sym_DOLLAR, - ACTIONS(813), 1, - anon_sym_BSLASH, - ACTIONS(815), 1, - sym_name_identifier, - ACTIONS(817), 1, - sym_operator, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - STATE(513), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1470), 1, - sym_subexpression, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2184), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(807), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26273] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_return, - ACTIONS(811), 1, - anon_sym_DOLLAR, - ACTIONS(813), 1, - anon_sym_BSLASH, - ACTIONS(815), 1, - sym_name_identifier, - ACTIONS(817), 1, - sym_operator, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - STATE(513), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1470), 1, - sym_subexpression, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2184), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(807), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26382] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(756), 1, - sym_expression, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26491] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(271), 1, - anon_sym_return, - ACTIONS(273), 1, - anon_sym_DOLLAR, - ACTIONS(275), 1, - anon_sym_BSLASH, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(279), 1, - sym_operator, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - STATE(581), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(1711), 1, - sym_subexpression, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26600] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2513), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26709] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(757), 1, - sym_expression, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26818] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2497), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [26927] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [27036] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2490), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [27145] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_return, - ACTIONS(811), 1, - anon_sym_DOLLAR, - ACTIONS(813), 1, - anon_sym_BSLASH, - ACTIONS(815), 1, - sym_name_identifier, - ACTIONS(817), 1, - sym_operator, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - STATE(513), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1470), 1, - sym_subexpression, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2184), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(807), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [27254] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(809), 1, - anon_sym_return, - ACTIONS(811), 1, - anon_sym_DOLLAR, - ACTIONS(813), 1, - anon_sym_BSLASH, - ACTIONS(815), 1, - sym_name_identifier, - ACTIONS(817), 1, - sym_operator, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - STATE(513), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1470), 1, - sym_subexpression, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2184), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(807), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [27363] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(193), 1, - anon_sym_return, - ACTIONS(195), 1, - anon_sym_DOLLAR, - ACTIONS(197), 1, - anon_sym_BSLASH, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(201), 1, - sym_operator, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - STATE(580), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(760), 1, - sym_expression, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(1741), 1, - sym_subexpression, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [27472] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1063), 1, - anon_sym_return, - ACTIONS(1065), 1, - anon_sym_DOLLAR, - ACTIONS(1067), 1, - anon_sym_BSLASH, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1071), 1, - sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1513), 1, - sym_expression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [27581] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1017), 1, - anon_sym_return, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(1021), 1, - anon_sym_BSLASH, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1025), 1, - sym_operator, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - STATE(530), 1, - sym_name_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1501), 1, - sym_subexpression, - STATE(1517), 1, - sym_expression, - STATE(1814), 1, aux_sym_name_expression_repeat2, - STATE(2198), 1, + STATE(2361), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2633), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -48477,77 +46268,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1015), 2, + ACTIONS(887), 2, anon_sym_TILDE, anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(640), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [27690] = 31, + [22968] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, + ACTIONS(67), 1, sym_float_number_literal, - ACTIONS(799), 1, + ACTIONS(69), 1, sym_number_literal, - ACTIONS(801), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(803), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, + STATE(799), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -48555,40 +46345,1666 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(785), 2, + ACTIONS(207), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(610), 5, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [27799] = 31, + [23075] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(575), 1, + ACTIONS(57), 1, anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(797), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23182] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23289] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(797), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(953), 1, + anon_sym_return, + ACTIONS(955), 1, + anon_sym_DOLLAR, + ACTIONS(957), 1, + anon_sym_BSLASH, + ACTIONS(959), 1, + sym_operator, + STATE(272), 1, + sym_name_expression, + STATE(787), 1, + sym_extended_name, + STATE(1537), 1, + sym_subexpression, + STATE(1571), 1, + sym_expression, + STATE(1949), 1, + aux_sym_name_expression_repeat1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2334), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(951), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23396] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(375), 1, + sym_name_identifier, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_return, + ACTIONS(905), 1, + anon_sym_DOLLAR, + ACTIONS(907), 1, + anon_sym_BSLASH, + ACTIONS(909), 1, + sym_operator, + STATE(181), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(717), 1, + sym_extended_name, + STATE(1498), 1, + sym_subexpression, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23503] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23610] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(796), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23717] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(789), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23824] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(653), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_return, + ACTIONS(659), 1, + anon_sym_DOLLAR, + ACTIONS(661), 1, + anon_sym_BSLASH, + ACTIONS(663), 1, + sym_name_identifier, + ACTIONS(665), 1, + sym_operator, + STATE(509), 1, + sym_name_expression, + STATE(914), 1, + sym_extended_name, + STATE(1576), 1, + sym_subexpression, + STATE(1601), 1, + sym_expression, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [23931] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(739), 1, + anon_sym_return, + ACTIONS(741), 1, + anon_sym_DOLLAR, + ACTIONS(743), 1, + anon_sym_BSLASH, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + sym_name_identifier, + ACTIONS(749), 1, + sym_operator, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + STATE(500), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(973), 1, + sym_extended_name, + STATE(1548), 1, + sym_subexpression, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2327), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(737), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24038] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(739), 1, + anon_sym_return, + ACTIONS(741), 1, + anon_sym_DOLLAR, + ACTIONS(743), 1, + anon_sym_BSLASH, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + sym_name_identifier, + ACTIONS(749), 1, + sym_operator, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + STATE(500), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(973), 1, + sym_extended_name, + STATE(1548), 1, + sym_subexpression, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2327), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(737), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24145] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24252] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(781), 1, + sym_name_identifier, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_return, + ACTIONS(983), 1, + anon_sym_DOLLAR, + ACTIONS(985), 1, + anon_sym_BSLASH, + ACTIONS(987), 1, + sym_operator, + STATE(271), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(750), 1, + sym_extended_name, + STATE(1527), 1, + sym_subexpression, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24359] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_return, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + anon_sym_BSLASH, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1151), 1, + sym_operator, + STATE(499), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(926), 1, + sym_extended_name, + STATE(1557), 1, + sym_subexpression, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24466] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24573] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_return, + ACTIONS(673), 1, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(679), 1, + sym_operator, + STATE(561), 1, + sym_expression, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24680] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_return, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + anon_sym_BSLASH, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1151), 1, + sym_operator, + STATE(499), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(926), 1, + sym_extended_name, + STATE(1557), 1, + sym_subexpression, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24787] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, + sym_operator, + STATE(551), 1, + sym_expression, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [24894] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(808), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25001] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25108] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25215] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1171), 1, + anon_sym_return, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1175), 1, + anon_sym_BSLASH, + ACTIONS(1177), 1, + sym_name_identifier, + ACTIONS(1179), 1, + sym_operator, + STATE(551), 1, + sym_expression, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(2529), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25322] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, ACTIONS(935), 1, anon_sym_LPAREN, ACTIONS(939), 1, @@ -48601,31 +48017,21 @@ static const uint16_t ts_small_parse_table[] = { sym_name_identifier, ACTIONS(947), 1, sym_operator, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - STATE(551), 1, - sym_name_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1506), 1, - sym_subexpression, - STATE(1625), 1, + STATE(559), 1, sym_expression, - STATE(1798), 1, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, aux_sym_name_expression_repeat2, - STATE(2237), 1, + STATE(2377), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2463), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -48633,77 +48039,76 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, ACTIONS(937), 2, anon_sym_TILDE, anon_sym_AT, - STATE(954), 2, + STATE(657), 2, sym_string_literal, sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(653), 5, + STATE(649), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [27908] = 31, + [25429] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(551), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, + ACTIONS(877), 1, sym_float_number_literal, - ACTIONS(929), 1, + ACTIONS(879), 1, sym_number_literal, - ACTIONS(931), 1, + ACTIONS(881), 1, anon_sym_DQUOTE, - ACTIONS(933), 1, + ACTIONS(883), 1, anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(685), 1, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_DOLLAR, + ACTIONS(943), 1, + anon_sym_BSLASH, + ACTIONS(945), 1, + sym_name_identifier, + ACTIONS(947), 1, + sym_operator, + STATE(556), 1, sym_expression, - STATE(1418), 1, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, + STATE(2296), 1, aux_sym_name_expression_repeat2, - STATE(2218), 1, + STATE(2377), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2463), 1, + sym_subexpression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, @@ -48711,3352 +48116,5929 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(59), 2, anon_sym_break, anon_sym_continue, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(915), 2, + ACTIONS(937), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, + STATE(657), 2, sym_string_literal, sym_char_literal, - STATE(595), 3, + STATE(550), 3, sym_block, sym_return_expression, sym_loop_control_expression, - STATE(584), 4, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, sym_prefixed_expression, sym_unary_operator_expression, sym_type_constructor, sym_lambda_function, - STATE(661), 5, + STATE(649), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [28017] = 31, + [25536] = 30, ACTIONS(3), 1, sym__line_comment, ACTIONS(29), 1, anon_sym_LBRACE, - ACTIONS(551), 1, + ACTIONS(873), 1, anon_sym_LBRACK, - ACTIONS(695), 1, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_DOLLAR, + ACTIONS(943), 1, + anon_sym_BSLASH, + ACTIONS(945), 1, + sym_name_identifier, + ACTIONS(947), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, + aux_sym_name_expression_repeat2, + STATE(2377), 1, + aux_sym_reference_expression_repeat1, + STATE(2463), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(937), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25643] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_DOLLAR, + ACTIONS(943), 1, + anon_sym_BSLASH, + ACTIONS(945), 1, + sym_name_identifier, + ACTIONS(947), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, + aux_sym_name_expression_repeat2, + STATE(2377), 1, + aux_sym_reference_expression_repeat1, + STATE(2463), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(937), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25750] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, ACTIONS(699), 1, - anon_sym_return, + sym_number_literal, ACTIONS(701), 1, - anon_sym_DOLLAR, + anon_sym_DQUOTE, ACTIONS(703), 1, - anon_sym_BSLASH, - ACTIONS(705), 1, - sym_name_identifier, - ACTIONS(707), 1, - sym_operator, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, anon_sym_SQUOTE, - STATE(664), 1, - sym_scoped_statement, - STATE(681), 1, - sym_expression, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28126] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, + ACTIONS(849), 1, anon_sym_LPAREN, - ACTIONS(1063), 1, + ACTIONS(853), 1, anon_sym_return, - ACTIONS(1065), 1, + ACTIONS(855), 1, anon_sym_DOLLAR, - ACTIONS(1067), 1, + ACTIONS(857), 1, anon_sym_BSLASH, - ACTIONS(1069), 1, + ACTIONS(859), 1, sym_name_identifier, - ACTIONS(1071), 1, + ACTIONS(861), 1, sym_operator, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - STATE(548), 1, - sym_name_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(665), 1, - sym_expression, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1511), 1, - sym_subexpression, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28235] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(917), 1, - anon_sym_return, - ACTIONS(919), 1, - anon_sym_DOLLAR, - ACTIONS(921), 1, - anon_sym_BSLASH, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(925), 1, - sym_operator, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - STATE(564), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(681), 1, - sym_expression, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1611), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28344] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(729), 1, - sym_operator, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28453] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(665), 1, - sym_expression, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2356), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28562] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28671] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(613), 1, - sym_scoped_statement, - STATE(760), 1, - sym_expression, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28780] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(729), 1, - sym_operator, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28889] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(613), 1, - sym_scoped_statement, - STATE(757), 1, - sym_expression, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [28998] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(729), 1, - sym_operator, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29107] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29216] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(729), 1, - sym_operator, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29325] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(729), 1, - sym_operator, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29434] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(721), 1, - anon_sym_return, - ACTIONS(723), 1, - anon_sym_DOLLAR, - ACTIONS(725), 1, - anon_sym_BSLASH, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(729), 1, - sym_operator, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - STATE(557), 1, - sym_name_expression, - STATE(587), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1554), 1, - sym_subexpression, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29543] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(699), 1, - anon_sym_return, - ACTIONS(701), 1, - anon_sym_DOLLAR, - ACTIONS(703), 1, - anon_sym_BSLASH, - ACTIONS(705), 1, - sym_name_identifier, - ACTIONS(707), 1, - sym_operator, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - STATE(664), 1, - sym_scoped_statement, - STATE(685), 1, - sym_expression, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2396), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29652] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(589), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29761] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(613), 1, - sym_scoped_statement, - STATE(750), 1, - sym_expression, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29870] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(613), 1, - sym_scoped_statement, STATE(748), 1, sym_expression, - STATE(993), 1, + STATE(1081), 1, sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [29979] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30088] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(613), 1, - sym_scoped_statement, - STATE(721), 1, - sym_expression, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30197] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(613), 1, - sym_scoped_statement, - STATE(756), 1, - sym_expression, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30306] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(33), 1, - anon_sym_LPAREN, - ACTIONS(51), 1, - anon_sym_return, - ACTIONS(53), 1, - anon_sym_DOLLAR, - ACTIONS(55), 1, - anon_sym_BSLASH, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(61), 1, - sym_name_identifier, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - sym_operator, - STATE(585), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, - sym_name_expression, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(2210), 1, - aux_sym_reference_expression_repeat1, - STATE(2390), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(49), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30415] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30524] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_return, - ACTIONS(1139), 1, - anon_sym_DOLLAR, - ACTIONS(1141), 1, - anon_sym_BSLASH, - ACTIONS(1143), 1, - sym_name_identifier, - ACTIONS(1145), 1, - sym_operator, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - STATE(591), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2270), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30633] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_return, - ACTIONS(1139), 1, - anon_sym_DOLLAR, - ACTIONS(1141), 1, - anon_sym_BSLASH, - ACTIONS(1143), 1, - sym_name_identifier, - ACTIONS(1145), 1, - sym_operator, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - STATE(585), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2270), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30742] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(633), 1, - anon_sym_return, - ACTIONS(635), 1, - anon_sym_DOLLAR, - ACTIONS(637), 1, - anon_sym_BSLASH, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(641), 1, - sym_operator, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2482), 1, - sym_subexpression, - STATE(2581), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30851] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_return, - ACTIONS(1139), 1, - anon_sym_DOLLAR, - ACTIONS(1141), 1, - anon_sym_BSLASH, - ACTIONS(1143), 1, - sym_name_identifier, - ACTIONS(1145), 1, - sym_operator, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - STATE(592), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2270), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [30960] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_return, - ACTIONS(1139), 1, - anon_sym_DOLLAR, - ACTIONS(1141), 1, - anon_sym_BSLASH, - ACTIONS(1143), 1, - sym_name_identifier, - ACTIONS(1145), 1, - sym_operator, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - STATE(589), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2270), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31069] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2585), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31178] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_return, - ACTIONS(1139), 1, - anon_sym_DOLLAR, - ACTIONS(1141), 1, - anon_sym_BSLASH, - ACTIONS(1143), 1, - sym_name_identifier, - ACTIONS(1145), 1, - sym_operator, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - STATE(586), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2270), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31287] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_return, - ACTIONS(1139), 1, - anon_sym_DOLLAR, - ACTIONS(1141), 1, - anon_sym_BSLASH, - ACTIONS(1143), 1, - sym_name_identifier, - ACTIONS(1145), 1, - sym_operator, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - STATE(587), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2270), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31396] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(787), 1, - anon_sym_return, - ACTIONS(789), 1, - anon_sym_DOLLAR, - ACTIONS(791), 1, - anon_sym_BSLASH, - ACTIONS(793), 1, - sym_name_identifier, - ACTIONS(795), 1, - sym_operator, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2450), 1, - sym_subexpression, - STATE(2540), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31505] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1085), 1, - anon_sym_return, - ACTIONS(1087), 1, - anon_sym_DOLLAR, - ACTIONS(1089), 1, - anon_sym_BSLASH, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1093), 1, - sym_operator, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2343), 1, - sym_expression, - STATE(2356), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31614] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(545), 1, - anon_sym_return, - ACTIONS(547), 1, - anon_sym_DOLLAR, - ACTIONS(549), 1, - anon_sym_BSLASH, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(553), 1, - sym_name_identifier, - ACTIONS(555), 1, - sym_operator, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - STATE(569), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1662), 1, - sym_subexpression, - STATE(1675), 1, - aux_sym_name_expression_repeat2, - STATE(2202), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(543), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31723] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1017), 1, - anon_sym_return, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(1021), 1, - anon_sym_BSLASH, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1025), 1, - sym_operator, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - STATE(530), 1, - sym_name_expression, - STATE(591), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1501), 1, - sym_subexpression, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2198), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1015), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31832] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1017), 1, - anon_sym_return, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(1021), 1, - anon_sym_BSLASH, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1025), 1, - sym_operator, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - STATE(530), 1, - sym_name_expression, - STATE(585), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1501), 1, - sym_subexpression, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2198), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1015), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [31941] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1137), 1, - anon_sym_return, - ACTIONS(1139), 1, - anon_sym_DOLLAR, - ACTIONS(1141), 1, - anon_sym_BSLASH, - ACTIONS(1143), 1, - sym_name_identifier, - ACTIONS(1145), 1, - sym_operator, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - STATE(625), 1, - sym_scoped_statement, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2270), 1, - sym_subexpression, - STATE(2328), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [32050] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, - anon_sym_LPAREN, - ACTIONS(765), 1, - anon_sym_return, - ACTIONS(767), 1, - anon_sym_DOLLAR, - ACTIONS(769), 1, - anon_sym_BSLASH, - ACTIONS(771), 1, - sym_name_identifier, - ACTIONS(773), 1, - sym_operator, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - STATE(647), 1, - sym_scoped_statement, - STATE(1069), 1, - sym_name_expression, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2324), 1, - sym_subexpression, - STATE(2400), 1, - sym_expression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [32159] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1017), 1, - anon_sym_return, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(1021), 1, - anon_sym_BSLASH, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1025), 1, - sym_operator, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - STATE(530), 1, - sym_name_expression, - STATE(592), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1501), 1, - sym_subexpression, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2198), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1015), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [32268] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1017), 1, - anon_sym_return, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(1021), 1, - anon_sym_BSLASH, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1025), 1, - sym_operator, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - STATE(530), 1, - sym_name_expression, - STATE(589), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1501), 1, - sym_subexpression, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2198), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1015), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [32377] = 31, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1017), 1, - anon_sym_return, - ACTIONS(1019), 1, - anon_sym_DOLLAR, - ACTIONS(1021), 1, - anon_sym_BSLASH, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1025), 1, - sym_operator, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - STATE(530), 1, - sym_name_expression, - STATE(586), 1, - sym_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1501), 1, - sym_subexpression, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2198), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(59), 2, - anon_sym_break, - anon_sym_continue, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1015), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(584), 4, - sym_prefixed_expression, - sym_unary_operator_expression, - sym_type_constructor, - sym_lambda_function, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [32486] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RBRACE, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - ACTIONS(1155), 1, - anon_sym_LPAREN, - STATE(849), 1, - sym_type_subexpression, - STATE(1030), 1, - sym_subexpression_token, - STATE(1449), 1, - aux_sym_name_expression_repeat1, STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, aux_sym_name_expression_repeat2, - STATE(2330), 1, + STATE(2341), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1157), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1159), 2, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(538), 2, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25857] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_return, + ACTIONS(711), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(717), 1, + sym_operator, + STATE(732), 1, + sym_expression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [25964] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(802), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26071] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1171), 1, + anon_sym_return, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1175), 1, + anon_sym_BSLASH, + ACTIONS(1177), 1, + sym_name_identifier, + ACTIONS(1179), 1, + sym_operator, + STATE(559), 1, + sym_expression, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(2529), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26178] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_return, + ACTIONS(855), 1, + anon_sym_DOLLAR, + ACTIONS(857), 1, + anon_sym_BSLASH, + ACTIONS(859), 1, + sym_name_identifier, + ACTIONS(861), 1, + sym_operator, + STATE(752), 1, + sym_expression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26285] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1171), 1, + anon_sym_return, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1175), 1, + anon_sym_BSLASH, + ACTIONS(1177), 1, + sym_name_identifier, + ACTIONS(1179), 1, + sym_operator, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(2529), 1, + sym_subexpression, + STATE(2587), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26392] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1171), 1, + anon_sym_return, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1175), 1, + anon_sym_BSLASH, + ACTIONS(1177), 1, + sym_name_identifier, + ACTIONS(1179), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(2529), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26499] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, + sym_operator, + STATE(559), 1, + sym_expression, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26606] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(799), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26713] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1171), 1, + anon_sym_return, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1175), 1, + anon_sym_BSLASH, + ACTIONS(1177), 1, + sym_name_identifier, + ACTIONS(1179), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(2529), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26820] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(797), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [26927] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_return, + ACTIONS(673), 1, + anon_sym_DOLLAR, + ACTIONS(675), 1, + anon_sym_BSLASH, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(679), 1, + sym_operator, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(2638), 1, + sym_subexpression, + STATE(2929), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27034] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1171), 1, + anon_sym_return, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1175), 1, + anon_sym_BSLASH, + ACTIONS(1177), 1, + sym_name_identifier, + ACTIONS(1179), 1, + sym_operator, + STATE(561), 1, + sym_expression, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(2529), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27141] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(939), 1, + anon_sym_return, + ACTIONS(941), 1, + anon_sym_DOLLAR, + ACTIONS(943), 1, + anon_sym_BSLASH, + ACTIONS(945), 1, + sym_name_identifier, + ACTIONS(947), 1, + sym_operator, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, + aux_sym_name_expression_repeat2, + STATE(2377), 1, + aux_sym_reference_expression_repeat1, + STATE(2463), 1, + sym_subexpression, + STATE(2523), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(937), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27248] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_return, + ACTIONS(855), 1, + anon_sym_DOLLAR, + ACTIONS(857), 1, + anon_sym_BSLASH, + ACTIONS(859), 1, + sym_name_identifier, + ACTIONS(861), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27355] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(1171), 1, + anon_sym_return, + ACTIONS(1173), 1, + anon_sym_DOLLAR, + ACTIONS(1175), 1, + anon_sym_BSLASH, + ACTIONS(1177), 1, + sym_name_identifier, + ACTIONS(1179), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(2529), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27462] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_return, + ACTIONS(645), 1, + anon_sym_DOLLAR, + ACTIONS(647), 1, + anon_sym_BSLASH, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(651), 1, + sym_operator, + STATE(265), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(807), 1, + sym_extended_name, + STATE(1530), 1, + sym_subexpression, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27569] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27676] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(796), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27783] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(789), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27890] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [27997] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_return, + ACTIONS(711), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(717), 1, + sym_operator, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(2520), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28104] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_return, + ACTIONS(645), 1, + anon_sym_DOLLAR, + ACTIONS(647), 1, + anon_sym_BSLASH, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(651), 1, + sym_operator, + STATE(265), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(807), 1, + sym_extended_name, + STATE(1530), 1, + sym_subexpression, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28211] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_return, + ACTIONS(855), 1, + anon_sym_DOLLAR, + ACTIONS(857), 1, + anon_sym_BSLASH, + ACTIONS(859), 1, + sym_name_identifier, + ACTIONS(861), 1, + sym_operator, + STATE(551), 1, + sym_expression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28318] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_return, + ACTIONS(645), 1, + anon_sym_DOLLAR, + ACTIONS(647), 1, + anon_sym_BSLASH, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(651), 1, + sym_operator, + STATE(265), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(807), 1, + sym_extended_name, + STATE(1530), 1, + sym_subexpression, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28425] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_return, + ACTIONS(855), 1, + anon_sym_DOLLAR, + ACTIONS(857), 1, + anon_sym_BSLASH, + ACTIONS(859), 1, + sym_name_identifier, + ACTIONS(861), 1, + sym_operator, + STATE(561), 1, + sym_expression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(2607), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28532] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_return, + ACTIONS(645), 1, + anon_sym_DOLLAR, + ACTIONS(647), 1, + anon_sym_BSLASH, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(651), 1, + sym_operator, + STATE(265), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(807), 1, + sym_extended_name, + STATE(1530), 1, + sym_subexpression, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28639] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(629), 1, + anon_sym_return, + ACTIONS(631), 1, + anon_sym_DOLLAR, + ACTIONS(633), 1, + anon_sym_BSLASH, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(637), 1, + sym_operator, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(2631), 1, + sym_subexpression, + STATE(2925), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28746] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_return, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + anon_sym_BSLASH, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1151), 1, + sym_operator, + STATE(499), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(926), 1, + sym_extended_name, + STATE(1557), 1, + sym_subexpression, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28853] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [28960] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_return, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + anon_sym_BSLASH, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1151), 1, + sym_operator, + STATE(499), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(926), 1, + sym_extended_name, + STATE(1557), 1, + sym_subexpression, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29067] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29174] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_return, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + anon_sym_BSLASH, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1151), 1, + sym_operator, + STATE(499), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(926), 1, + sym_extended_name, + STATE(1557), 1, + sym_subexpression, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29281] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29388] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(209), 1, + anon_sym_return, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_BSLASH, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(217), 1, + sym_operator, + STATE(543), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(1239), 1, + sym_extended_name, + STATE(1770), 1, + sym_subexpression, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29495] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(561), 1, + sym_expression, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29602] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29709] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(551), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29816] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(808), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [29923] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30030] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(681), 1, + anon_sym_LPAREN, + ACTIONS(685), 1, + anon_sym_return, + ACTIONS(687), 1, + anon_sym_DOLLAR, + ACTIONS(689), 1, + anon_sym_BSLASH, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, + sym_name_identifier, + ACTIONS(695), 1, + sym_operator, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + STATE(519), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, + sym_subexpression, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(683), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30137] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(681), 1, + anon_sym_LPAREN, + ACTIONS(685), 1, + anon_sym_return, + ACTIONS(687), 1, + anon_sym_DOLLAR, + ACTIONS(689), 1, + anon_sym_BSLASH, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(693), 1, + sym_name_identifier, + ACTIONS(695), 1, + sym_operator, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + STATE(519), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(1178), 1, + sym_extended_name, + STATE(1695), 1, + sym_subexpression, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(683), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30244] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30351] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30458] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_return, + ACTIONS(711), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(717), 1, + sym_operator, + STATE(559), 1, + sym_expression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30565] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_return, + ACTIONS(891), 1, + anon_sym_DOLLAR, + ACTIONS(893), 1, + anon_sym_BSLASH, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(897), 1, + sym_operator, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(2633), 1, + sym_subexpression, + STATE(2804), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30672] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_return, + ACTIONS(645), 1, + anon_sym_DOLLAR, + ACTIONS(647), 1, + anon_sym_BSLASH, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(651), 1, + sym_operator, + STATE(265), 1, + sym_name_expression, + STATE(551), 1, + sym_expression, + STATE(807), 1, + sym_extended_name, + STATE(1530), 1, + sym_subexpression, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30779] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_return, + ACTIONS(645), 1, + anon_sym_DOLLAR, + ACTIONS(647), 1, + anon_sym_BSLASH, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(651), 1, + sym_operator, + STATE(265), 1, + sym_name_expression, + STATE(561), 1, + sym_expression, + STATE(807), 1, + sym_extended_name, + STATE(1530), 1, + sym_subexpression, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30886] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_return, + ACTIONS(711), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(717), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [30993] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_return, + ACTIONS(711), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(717), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31100] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_return, + ACTIONS(869), 1, + anon_sym_DOLLAR, + ACTIONS(871), 1, + anon_sym_BSLASH, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + sym_operator, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(269), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(855), 1, + sym_extended_name, + STATE(1500), 1, + sym_subexpression, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31207] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_return, + ACTIONS(869), 1, + anon_sym_DOLLAR, + ACTIONS(871), 1, + anon_sym_BSLASH, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + sym_operator, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(269), 1, + sym_name_expression, + STATE(556), 1, + sym_expression, + STATE(855), 1, + sym_extended_name, + STATE(1500), 1, + sym_subexpression, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31314] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_return, + ACTIONS(869), 1, + anon_sym_DOLLAR, + ACTIONS(871), 1, + anon_sym_BSLASH, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + sym_operator, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(269), 1, + sym_name_expression, + STATE(563), 1, + sym_expression, + STATE(855), 1, + sym_extended_name, + STATE(1500), 1, + sym_subexpression, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31421] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_return, + ACTIONS(869), 1, + anon_sym_DOLLAR, + ACTIONS(871), 1, + anon_sym_BSLASH, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + sym_operator, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(269), 1, + sym_name_expression, + STATE(555), 1, + sym_expression, + STATE(855), 1, + sym_extended_name, + STATE(1500), 1, + sym_subexpression, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31528] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(748), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31635] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(732), 1, + sym_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31742] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(802), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31849] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(1157), 1, + anon_sym_return, + ACTIONS(1159), 1, + anon_sym_DOLLAR, + ACTIONS(1161), 1, + anon_sym_BSLASH, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1165), 1, + sym_operator, + STATE(528), 1, + sym_name_expression, + STATE(752), 1, + sym_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1690), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [31956] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(739), 1, + anon_sym_return, + ACTIONS(741), 1, + anon_sym_DOLLAR, + ACTIONS(743), 1, + anon_sym_BSLASH, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(747), 1, + sym_name_identifier, + ACTIONS(749), 1, + sym_operator, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + STATE(500), 1, + sym_name_expression, + STATE(973), 1, + sym_extended_name, + STATE(1548), 1, + sym_subexpression, + STATE(1629), 1, + sym_expression, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2327), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(737), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32063] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(559), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32170] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, + sym_operator, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3029), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32277] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(799), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32384] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(797), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32491] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(556), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32598] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_return, + ACTIONS(869), 1, + anon_sym_DOLLAR, + ACTIONS(871), 1, + anon_sym_BSLASH, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(875), 1, + sym_operator, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + STATE(269), 1, + sym_name_expression, + STATE(855), 1, + sym_extended_name, + STATE(1500), 1, + sym_subexpression, + STATE(1554), 1, + sym_expression, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32705] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, + sym_operator, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3018), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32812] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(709), 1, + anon_sym_return, + ACTIONS(711), 1, + anon_sym_DOLLAR, + ACTIONS(713), 1, + anon_sym_BSLASH, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(717), 1, + sym_operator, + STATE(555), 1, + sym_expression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(2507), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [32919] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(33), 1, + anon_sym_LPAREN, + ACTIONS(51), 1, + anon_sym_return, + ACTIONS(53), 1, + anon_sym_DOLLAR, + ACTIONS(55), 1, + anon_sym_BSLASH, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(61), 1, + sym_name_identifier, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(187), 1, + sym_operator, + STATE(563), 1, + sym_expression, + STATE(956), 1, + sym_name_expression, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2376), 1, + aux_sym_reference_expression_repeat1, + STATE(2488), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(49), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [33026] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(615), 1, + anon_sym_return, + ACTIONS(617), 1, + anon_sym_DOLLAR, + ACTIONS(619), 1, + anon_sym_BSLASH, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(623), 1, + sym_operator, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(2613), 1, + sym_subexpression, + STATE(3007), 1, + sym_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [33133] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(796), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [33240] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(269), 1, + anon_sym_return, + ACTIONS(271), 1, + anon_sym_DOLLAR, + ACTIONS(273), 1, + anon_sym_BSLASH, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(277), 1, + sym_operator, + STATE(539), 1, + sym_name_expression, + STATE(789), 1, + sym_expression, + STATE(1298), 1, + sym_extended_name, + STATE(1712), 1, + sym_subexpression, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [33347] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(1143), 1, + anon_sym_return, + ACTIONS(1145), 1, + anon_sym_DOLLAR, + ACTIONS(1147), 1, + anon_sym_BSLASH, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1151), 1, + sym_operator, + STATE(499), 1, + sym_name_expression, + STATE(559), 1, + sym_expression, + STATE(926), 1, + sym_extended_name, + STATE(1557), 1, + sym_subexpression, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [33454] = 30, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(1129), 1, + anon_sym_return, + ACTIONS(1131), 1, + anon_sym_DOLLAR, + ACTIONS(1133), 1, + anon_sym_BSLASH, + ACTIONS(1135), 1, + sym_name_identifier, + ACTIONS(1137), 1, + sym_operator, + STATE(491), 1, + sym_name_expression, + STATE(955), 1, + sym_extended_name, + STATE(1544), 1, + sym_subexpression, + STATE(1596), 1, + sym_expression, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(59), 2, + anon_sym_break, + anon_sym_continue, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(552), 4, + sym_prefixed_expression, + sym_unary_operator_expression, + sym_type_constructor, + sym_lambda_function, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [33561] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(759), 1, + anon_sym_LPAREN, + ACTIONS(763), 1, + sym_name_identifier, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + STATE(855), 1, + sym_extended_name, + STATE(880), 1, + sym_name_expression, + STATE(945), 1, + sym_type_subexpression, + STATE(1025), 1, + sym_subexpression_token, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2517), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(761), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(765), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(511), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(837), 2, + STATE(1152), 2, sym_string_literal, sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(1131), 2, + ACTIONS(407), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1153), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, + sym_access_expression, + sym_literal, + ACTIONS(409), 15, + anon_sym_const, + anon_sym_var, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, sym_operator, - [32576] = 22, + [33651] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(815), 1, - sym_name_identifier, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - ACTIONS(1161), 1, + ACTIONS(407), 1, + anon_sym_RBRACE, + ACTIONS(961), 1, anon_sym_LPAREN, - STATE(943), 1, + ACTIONS(965), 1, + sym_name_identifier, + ACTIONS(969), 1, + sym_float_number_literal, + ACTIONS(971), 1, + sym_number_literal, + ACTIONS(973), 1, + anon_sym_DQUOTE, + ACTIONS(975), 1, + anon_sym_SQUOTE, + STATE(850), 1, + sym_extended_name, + STATE(904), 1, + sym_name_expression, + STATE(905), 1, sym_type_subexpression, - STATE(1066), 1, + STATE(1190), 1, sym_subexpression_token, - STATE(1463), 1, + STATE(1972), 1, aux_sym_name_expression_repeat1, - STATE(1694), 1, + STATE(2314), 1, aux_sym_name_expression_repeat2, - STATE(2389), 1, + STATE(2528), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1163), 2, + ACTIONS(963), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1165), 2, + ACTIONS(967), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(524), 2, + STATE(489), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(929), 2, + STATE(1097), 2, sym_string_literal, sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(1047), 2, + STATE(1095), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 17, + sym_access_expression, + sym_literal, + ACTIONS(409), 17, anon_sym_namespace, - anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -52069,266 +54051,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [32666] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1167), 1, - anon_sym_LPAREN, - ACTIONS(1173), 1, - sym_name_identifier, - ACTIONS(1179), 1, - sym_float_number_literal, - ACTIONS(1182), 1, - sym_number_literal, - ACTIONS(1185), 1, - anon_sym_DQUOTE, - ACTIONS(1188), 1, - anon_sym_SQUOTE, - STATE(812), 1, - sym_type_subexpression, - STATE(1135), 1, - sym_subexpression_token, - STATE(1431), 1, - aux_sym_name_expression_repeat1, - STATE(1818), 1, - aux_sym_name_expression_repeat2, - STATE(2326), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1170), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1176), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(514), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(798), 2, - sym_string_literal, - sym_char_literal, - STATE(813), 2, - sym_extended_name, - sym_literal, - STATE(1022), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(387), 15, - anon_sym_const, - anon_sym_var, anon_sym_AMP, - anon_sym_match, - anon_sym_if, anon_sym_elif, anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, sym_operator, - [32756] = 22, + [33741] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1191), 1, + ACTIONS(411), 1, + anon_sym_RBRACE, + ACTIONS(1181), 1, anon_sym_LPAREN, - ACTIONS(1195), 1, + ACTIONS(1187), 1, sym_name_identifier, + ACTIONS(1193), 1, + sym_float_number_literal, + ACTIONS(1196), 1, + sym_number_literal, ACTIONS(1199), 1, - sym_float_number_literal, - ACTIONS(1201), 1, - sym_number_literal, - ACTIONS(1203), 1, anon_sym_DQUOTE, - ACTIONS(1205), 1, + ACTIONS(1202), 1, anon_sym_SQUOTE, - STATE(812), 1, + STATE(850), 1, + sym_extended_name, + STATE(904), 1, + sym_name_expression, + STATE(905), 1, sym_type_subexpression, - STATE(1135), 1, + STATE(1190), 1, sym_subexpression_token, - STATE(1431), 1, + STATE(1972), 1, aux_sym_name_expression_repeat1, - STATE(1818), 1, + STATE(2314), 1, aux_sym_name_expression_repeat2, - STATE(2326), 1, + STATE(2528), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1193), 2, + ACTIONS(1184), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1197), 2, + ACTIONS(1190), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(514), 2, + STATE(489), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(798), 2, + STATE(1097), 2, sym_string_literal, sym_char_literal, - STATE(813), 2, - sym_extended_name, - sym_literal, - STATE(1022), 2, + STATE(1095), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 15, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [32846] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1191), 1, - anon_sym_LPAREN, - ACTIONS(1195), 1, - sym_name_identifier, - ACTIONS(1199), 1, - sym_float_number_literal, - ACTIONS(1201), 1, - sym_number_literal, - ACTIONS(1203), 1, - anon_sym_DQUOTE, - ACTIONS(1205), 1, - anon_sym_SQUOTE, - STATE(812), 1, - sym_type_subexpression, - STATE(1135), 1, - sym_subexpression_token, - STATE(1431), 1, - aux_sym_name_expression_repeat1, - STATE(1818), 1, - aux_sym_name_expression_repeat2, - STATE(2326), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1193), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1197), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(515), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(798), 2, - sym_string_literal, - sym_char_literal, - STATE(813), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(1022), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 15, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [32936] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(529), 1, - sym_name_identifier, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - ACTIONS(1207), 1, - anon_sym_LPAREN, - STATE(819), 1, - sym_type_subexpression, - STATE(1087), 1, - sym_subexpression_token, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2360), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1209), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1211), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(519), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(1139), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 17, + ACTIONS(413), 17, anon_sym_namespace, - anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -52341,69 +54119,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_elif, anon_sym_else, sym_operator, - [33026] = 22, + [33831] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1213), 1, + ACTIONS(1205), 1, anon_sym_LPAREN, - ACTIONS(1217), 1, + ACTIONS(1211), 1, sym_name_identifier, - ACTIONS(1221), 1, + ACTIONS(1217), 1, sym_float_number_literal, - ACTIONS(1223), 1, + ACTIONS(1220), 1, sym_number_literal, - ACTIONS(1225), 1, + ACTIONS(1223), 1, anon_sym_DQUOTE, - ACTIONS(1227), 1, + ACTIONS(1226), 1, anon_sym_SQUOTE, - STATE(928), 1, + STATE(833), 1, + sym_extended_name, + STATE(906), 1, + sym_name_expression, + STATE(968), 1, sym_type_subexpression, - STATE(962), 1, + STATE(1085), 1, sym_subexpression_token, - STATE(1409), 1, + STATE(1964), 1, aux_sym_name_expression_repeat1, - STATE(1756), 1, + STATE(2282), 1, aux_sym_name_expression_repeat2, - STATE(2374), 1, + STATE(2506), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1215), 2, + ACTIONS(1208), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1219), 2, + ACTIONS(1214), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(520), 2, + STATE(490), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(899), 2, + STATE(1199), 2, sym_string_literal, sym_char_literal, - STATE(934), 2, - sym_extended_name, - sym_literal, - STATE(968), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, + ACTIONS(411), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(487), 15, + STATE(1198), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 15, anon_sym_const, anon_sym_var, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, anon_sym_match, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_do, anon_sym_while, anon_sym_for, @@ -52412,193 +54191,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [33116] = 22, + [33921] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, - ACTIONS(529), 1, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(1135), 1, sym_name_identifier, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - ACTIONS(1207), 1, - anon_sym_LPAREN, - STATE(819), 1, - sym_type_subexpression, - STATE(1087), 1, - sym_subexpression_token, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2360), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1209), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1211), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(521), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(1139), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 17, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_operator, - [33206] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1213), 1, - anon_sym_LPAREN, - ACTIONS(1217), 1, - sym_name_identifier, - ACTIONS(1221), 1, - sym_float_number_literal, - ACTIONS(1223), 1, - sym_number_literal, - ACTIONS(1225), 1, - anon_sym_DQUOTE, - ACTIONS(1227), 1, - anon_sym_SQUOTE, - STATE(928), 1, - sym_type_subexpression, - STATE(962), 1, - sym_subexpression_token, - STATE(1409), 1, - aux_sym_name_expression_repeat1, - STATE(1756), 1, - aux_sym_name_expression_repeat2, - STATE(2374), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1215), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1219), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(522), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(899), 2, - sym_string_literal, - sym_char_literal, - STATE(934), 2, - sym_extended_name, - sym_literal, - STATE(968), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 15, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [33296] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - ts_builtin_sym_end, ACTIONS(1229), 1, anon_sym_LPAREN, ACTIONS(1235), 1, - sym_name_identifier, - ACTIONS(1241), 1, sym_float_number_literal, - ACTIONS(1244), 1, + ACTIONS(1237), 1, sym_number_literal, - ACTIONS(1247), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1250), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - STATE(819), 1, + STATE(955), 1, + sym_extended_name, + STATE(1055), 1, sym_type_subexpression, - STATE(1087), 1, + STATE(1133), 1, + sym_name_expression, + STATE(1280), 1, sym_subexpression_token, - STATE(1459), 1, + STATE(2019), 1, aux_sym_name_expression_repeat1, - STATE(1776), 1, + STATE(2237), 1, aux_sym_name_expression_repeat2, - STATE(2360), 1, + STATE(2532), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1232), 2, + ACTIONS(1231), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1238), 2, + ACTIONS(1233), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(521), 2, + STATE(517), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, + STATE(1259), 2, sym_string_literal, sym_char_literal, - STATE(1139), 2, + ACTIONS(343), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1261), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 14, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [34013] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(833), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + sym_name_identifier, + ACTIONS(841), 1, + sym_float_number_literal, + ACTIONS(843), 1, + sym_number_literal, + ACTIONS(845), 1, + anon_sym_DQUOTE, + ACTIONS(847), 1, + anon_sym_SQUOTE, + STATE(833), 1, + sym_extended_name, + STATE(906), 1, sym_name_expression, - ACTIONS(387), 17, + STATE(968), 1, + sym_type_subexpression, + STATE(1085), 1, + sym_subexpression_token, + STATE(1964), 1, + aux_sym_name_expression_repeat1, + STATE(2282), 1, + aux_sym_name_expression_repeat2, + STATE(2506), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(835), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(839), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(490), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1199), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1198), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 15, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [34103] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + ts_builtin_sym_end, + ACTIONS(1053), 1, + anon_sym_LPAREN, + ACTIONS(1057), 1, + sym_name_identifier, + ACTIONS(1061), 1, + sym_float_number_literal, + ACTIONS(1063), 1, + sym_number_literal, + ACTIONS(1065), 1, + anon_sym_DQUOTE, + ACTIONS(1067), 1, + anon_sym_SQUOTE, + STATE(768), 1, + sym_extended_name, + STATE(890), 1, + sym_type_subexpression, + STATE(963), 1, + sym_name_expression, + STATE(1155), 1, + sym_subexpression_token, + STATE(1980), 1, + aux_sym_name_expression_repeat1, + STATE(2176), 1, + aux_sym_name_expression_repeat2, + STATE(2492), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1055), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1059), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(494), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1114), 2, + sym_string_literal, + sym_char_literal, + STATE(1116), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 17, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -52613,62 +54393,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, + anon_sym_AMP, + anon_sym_PIPE, sym_operator, - [33386] = 22, + [34193] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1253), 1, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(1243), 1, anon_sym_LPAREN, - ACTIONS(1259), 1, + ACTIONS(1249), 1, sym_name_identifier, - ACTIONS(1265), 1, + ACTIONS(1255), 1, sym_float_number_literal, - ACTIONS(1268), 1, + ACTIONS(1258), 1, sym_number_literal, - ACTIONS(1271), 1, + ACTIONS(1261), 1, anon_sym_DQUOTE, - ACTIONS(1274), 1, + ACTIONS(1264), 1, anon_sym_SQUOTE, - STATE(928), 1, + STATE(768), 1, + sym_extended_name, + STATE(890), 1, sym_type_subexpression, - STATE(962), 1, + STATE(963), 1, + sym_name_expression, + STATE(1155), 1, sym_subexpression_token, - STATE(1409), 1, + STATE(1980), 1, aux_sym_name_expression_repeat1, - STATE(1756), 1, + STATE(2176), 1, aux_sym_name_expression_repeat2, - STATE(2374), 1, + STATE(2492), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1256), 2, + ACTIONS(1246), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1262), 2, + ACTIONS(1252), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(522), 2, + STATE(494), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(899), 2, + STATE(1114), 2, sym_string_literal, sym_char_literal, - STATE(934), 2, - sym_extended_name, - sym_literal, - STATE(968), 2, + STATE(1116), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 17, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [34283] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + ts_builtin_sym_end, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(737), 1, + sym_extended_name, + STATE(1026), 1, sym_name_expression, - ACTIONS(385), 3, + STATE(1028), 1, + sym_type_subexpression, + STATE(1296), 1, + sym_subexpression_token, + STATE(1951), 1, + aux_sym_name_expression_repeat1, + STATE(2264), 1, + aux_sym_name_expression_repeat2, + STATE(2519), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1269), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1273), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(523), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1268), 2, + sym_string_literal, + sym_char_literal, + STATE(1260), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 16, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [34375] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1093), 1, + anon_sym_LPAREN, + ACTIONS(1097), 1, + sym_name_identifier, + ACTIONS(1101), 1, + sym_float_number_literal, + ACTIONS(1103), 1, + sym_number_literal, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + STATE(784), 1, + sym_extended_name, + STATE(873), 1, + sym_type_subexpression, + STATE(970), 1, + sym_name_expression, + STATE(1087), 1, + sym_subexpression_token, + STATE(1983), 1, + aux_sym_name_expression_repeat1, + STATE(2297), 1, + aux_sym_name_expression_repeat2, + STATE(2484), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1095), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1099), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(497), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1161), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(387), 15, + STATE(1167), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 15, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -52684,267 +54601,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [33476] = 22, + [34465] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, - anon_sym_RBRACE, - ACTIONS(1277), 1, + ACTIONS(1283), 1, anon_sym_LPAREN, - ACTIONS(1281), 1, - sym_name_identifier, - ACTIONS(1285), 1, - sym_float_number_literal, - ACTIONS(1287), 1, - sym_number_literal, ACTIONS(1289), 1, + sym_name_identifier, + ACTIONS(1295), 1, + sym_float_number_literal, + ACTIONS(1298), 1, + sym_number_literal, + ACTIONS(1301), 1, anon_sym_DQUOTE, - ACTIONS(1291), 1, + ACTIONS(1304), 1, anon_sym_SQUOTE, - STATE(826), 1, + STATE(784), 1, + sym_extended_name, + STATE(873), 1, sym_type_subexpression, - STATE(1070), 1, + STATE(970), 1, + sym_name_expression, + STATE(1087), 1, sym_subexpression_token, - STATE(1417), 1, + STATE(1983), 1, aux_sym_name_expression_repeat1, - STATE(1789), 1, + STATE(2297), 1, aux_sym_name_expression_repeat2, - STATE(2380), 1, + STATE(2484), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1279), 2, + ACTIONS(1286), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1283), 2, + ACTIONS(1292), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(497), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1161), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1167), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 15, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [34555] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1051), 1, + anon_sym_COLON, + ACTIONS(1307), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_float_number_literal, + ACTIONS(1317), 1, + sym_number_literal, + ACTIONS(1319), 1, + anon_sym_DQUOTE, + ACTIONS(1321), 1, + anon_sym_SQUOTE, + STATE(950), 1, + sym_extended_name, + STATE(1020), 1, + sym_type_subexpression, + STATE(1148), 1, + sym_name_expression, + STATE(1295), 1, + sym_subexpression_token, + STATE(1985), 1, + aux_sym_name_expression_repeat1, + STATE(2292), 1, + aux_sym_name_expression_repeat2, + STATE(2479), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1309), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1313), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(522), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(343), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1221), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 14, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [34647] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(775), 1, + anon_sym_COLON, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1329), 1, + sym_float_number_literal, + ACTIONS(1331), 1, + sym_number_literal, + ACTIONS(1333), 1, + anon_sym_DQUOTE, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + STATE(926), 1, + sym_extended_name, + STATE(1066), 1, + sym_type_subexpression, + STATE(1170), 1, + sym_name_expression, + STATE(1277), 1, + sym_subexpression_token, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2469), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1325), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1327), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(513), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1218), 2, + sym_string_literal, + sym_char_literal, + STATE(1217), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 16, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + [34739] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(747), 1, + sym_name_identifier, + ACTIONS(775), 1, + anon_sym_COLON, + ACTIONS(1337), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, + sym_float_number_literal, + ACTIONS(1345), 1, + sym_number_literal, + ACTIONS(1347), 1, + anon_sym_DQUOTE, + ACTIONS(1349), 1, + anon_sym_SQUOTE, + STATE(973), 1, + sym_extended_name, + STATE(1007), 1, + sym_type_subexpression, + STATE(1086), 1, + sym_name_expression, + STATE(1302), 1, + sym_subexpression_token, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2550), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1339), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1341), 2, sym_type_identifier, sym_abstract_type_identifier, STATE(527), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(825), 2, - sym_extended_name, - sym_literal, - STATE(857), 2, + STATE(1265), 2, sym_string_literal, sym_char_literal, - STATE(1046), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [33566] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, - ACTIONS(815), 1, - sym_name_identifier, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - ACTIONS(1161), 1, - anon_sym_LPAREN, - STATE(943), 1, - sym_type_subexpression, - STATE(1066), 1, - sym_subexpression_token, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2389), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1163), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1165), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(528), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(1047), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 17, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [33656] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(1293), 1, - anon_sym_LPAREN, - ACTIONS(1299), 1, - sym_name_identifier, - ACTIONS(1305), 1, - sym_float_number_literal, - ACTIONS(1308), 1, - sym_number_literal, - ACTIONS(1311), 1, - anon_sym_DQUOTE, - ACTIONS(1314), 1, - anon_sym_SQUOTE, - STATE(826), 1, - sym_type_subexpression, - STATE(1070), 1, - sym_subexpression_token, - STATE(1417), 1, - aux_sym_name_expression_repeat1, - STATE(1789), 1, - aux_sym_name_expression_repeat2, - STATE(2380), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1296), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1302), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(525), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(825), 2, - sym_extended_name, - sym_literal, - STATE(857), 2, - sym_string_literal, - sym_char_literal, - STATE(1046), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [33746] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1317), 1, - anon_sym_LPAREN, - ACTIONS(1323), 1, - sym_name_identifier, - ACTIONS(1329), 1, - sym_float_number_literal, - ACTIONS(1332), 1, - sym_number_literal, - ACTIONS(1335), 1, - anon_sym_DQUOTE, - ACTIONS(1338), 1, - anon_sym_SQUOTE, - STATE(863), 1, - sym_type_subexpression, - STATE(1014), 1, - sym_subexpression_token, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2373), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1320), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1326), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(526), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(949), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, + ACTIONS(343), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(387), 15, + STATE(1264), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 14, anon_sym_const, anon_sym_var, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_match, anon_sym_if, @@ -52956,57 +54876,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [33836] = 22, + [34831] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(509), 1, + ACTIONS(411), 1, anon_sym_RBRACE, - ACTIONS(1277), 1, + ACTIONS(1351), 1, anon_sym_LPAREN, - ACTIONS(1281), 1, + ACTIONS(1357), 1, sym_name_identifier, - ACTIONS(1285), 1, + ACTIONS(1363), 1, sym_float_number_literal, - ACTIONS(1287), 1, + ACTIONS(1366), 1, sym_number_literal, - ACTIONS(1289), 1, + ACTIONS(1369), 1, anon_sym_DQUOTE, - ACTIONS(1291), 1, + ACTIONS(1372), 1, anon_sym_SQUOTE, - STATE(826), 1, + STATE(787), 1, + sym_extended_name, + STATE(980), 1, + sym_name_expression, + STATE(982), 1, sym_type_subexpression, - STATE(1070), 1, + STATE(1068), 1, sym_subexpression_token, - STATE(1417), 1, + STATE(1949), 1, aux_sym_name_expression_repeat1, - STATE(1789), 1, + STATE(2216), 1, aux_sym_name_expression_repeat2, - STATE(2380), 1, + STATE(2542), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1279), 2, + ACTIONS(1354), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1283), 2, + ACTIONS(1360), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(525), 2, + STATE(501), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(825), 2, - sym_extended_name, - sym_literal, - STATE(857), 2, + STATE(1079), 2, sym_string_literal, sym_char_literal, - STATE(1046), 2, + STATE(1080), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 17, + sym_access_expression, + sym_literal, + ACTIONS(413), 17, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -53020,63 +54940,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, sym_operator, - [33926] = 22, + [34921] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, - ts_builtin_sym_end, - ACTIONS(1341), 1, + ACTIONS(407), 1, + anon_sym_RBRACE, + ACTIONS(793), 1, anon_sym_LPAREN, - ACTIONS(1347), 1, + ACTIONS(797), 1, sym_name_identifier, - ACTIONS(1353), 1, + ACTIONS(801), 1, sym_float_number_literal, - ACTIONS(1356), 1, + ACTIONS(803), 1, sym_number_literal, - ACTIONS(1359), 1, + ACTIONS(805), 1, anon_sym_DQUOTE, - ACTIONS(1362), 1, + ACTIONS(807), 1, anon_sym_SQUOTE, - STATE(943), 1, + STATE(787), 1, + sym_extended_name, + STATE(980), 1, + sym_name_expression, + STATE(982), 1, sym_type_subexpression, - STATE(1066), 1, + STATE(1068), 1, sym_subexpression_token, - STATE(1463), 1, + STATE(1949), 1, aux_sym_name_expression_repeat1, - STATE(1694), 1, + STATE(2216), 1, aux_sym_name_expression_repeat2, - STATE(2389), 1, + STATE(2542), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1344), 2, + ACTIONS(795), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1350), 2, + ACTIONS(799), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(528), 2, + STATE(501), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(929), 2, + STATE(1079), 2, sym_string_literal, sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(1047), 2, + STATE(1080), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 17, + sym_access_expression, + sym_literal, + ACTIONS(409), 17, anon_sym_namespace, - anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -53090,195 +55009,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [34016] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - ACTIONS(1365), 1, - anon_sym_LPAREN, - STATE(863), 1, - sym_type_subexpression, - STATE(1014), 1, - sym_subexpression_token, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2373), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1367), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1369), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(526), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(949), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 15, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, sym_operator, - [34106] = 22, + [35011] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1023), 1, - sym_name_identifier, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - ACTIONS(1365), 1, - anon_sym_LPAREN, - STATE(863), 1, - sym_type_subexpression, - STATE(1014), 1, - sym_subexpression_token, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2373), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1367), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1369), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(529), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(949), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 15, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [34196] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, + ACTIONS(343), 1, ts_builtin_sym_end, - ACTIONS(1371), 1, - anon_sym_LPAREN, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1375), 1, + anon_sym_COLON, ACTIONS(1377), 1, - sym_name_identifier, + anon_sym_LPAREN, ACTIONS(1383), 1, sym_float_number_literal, - ACTIONS(1386), 1, + ACTIONS(1385), 1, sym_number_literal, + ACTIONS(1387), 1, + anon_sym_DQUOTE, ACTIONS(1389), 1, - anon_sym_DQUOTE, - ACTIONS(1392), 1, anon_sym_SQUOTE, - STATE(897), 1, + STATE(812), 1, + sym_extended_name, + STATE(1075), 1, + sym_name_expression, + STATE(1076), 1, sym_type_subexpression, - STATE(997), 1, + STATE(1275), 1, sym_subexpression_token, - STATE(1411), 1, + STATE(1962), 1, aux_sym_name_expression_repeat1, - STATE(1774), 1, + STATE(2250), 1, aux_sym_name_expression_repeat2, - STATE(2320), 1, + STATE(2548), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1374), 2, + ACTIONS(1379), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1380), 2, + ACTIONS(1381), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(531), 2, + STATE(521), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(895), 2, - sym_extended_name, - sym_literal, - STATE(913), 2, + STATE(1242), 2, sym_string_literal, sym_char_literal, - STATE(1038), 2, + STATE(1241), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 17, + sym_access_expression, + sym_literal, + ACTIONS(345), 16, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -53293,60 +55079,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, anon_sym_PIPE, sym_operator, - [34286] = 22, + [35103] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(509), 1, + ACTIONS(411), 1, ts_builtin_sym_end, - ACTIONS(1395), 1, + ACTIONS(1391), 1, anon_sym_LPAREN, - ACTIONS(1399), 1, + ACTIONS(1397), 1, sym_name_identifier, ACTIONS(1403), 1, sym_float_number_literal, - ACTIONS(1405), 1, + ACTIONS(1406), 1, sym_number_literal, - ACTIONS(1407), 1, - anon_sym_DQUOTE, ACTIONS(1409), 1, + anon_sym_DQUOTE, + ACTIONS(1412), 1, anon_sym_SQUOTE, - STATE(897), 1, + STATE(750), 1, + sym_extended_name, + STATE(898), 1, sym_type_subexpression, - STATE(997), 1, + STATE(981), 1, + sym_name_expression, + STATE(1186), 1, sym_subexpression_token, - STATE(1411), 1, + STATE(1958), 1, aux_sym_name_expression_repeat1, - STATE(1774), 1, + STATE(2251), 1, aux_sym_name_expression_repeat2, - STATE(2320), 1, + STATE(2470), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1397), 2, + ACTIONS(1394), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1401), 2, + ACTIONS(1400), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(531), 2, + STATE(504), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(895), 2, - sym_extended_name, - sym_literal, - STATE(913), 2, + STATE(999), 2, sym_string_literal, sym_char_literal, - STATE(1038), 2, + STATE(1000), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 17, + sym_access_expression, + sym_literal, + ACTIONS(413), 17, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -53361,60 +55146,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, anon_sym_PIPE, + anon_sym_DASH_GT, sym_operator, - [34376] = 22, + [35193] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(407), 1, ts_builtin_sym_end, - ACTIONS(1395), 1, + ACTIONS(777), 1, anon_sym_LPAREN, - ACTIONS(1399), 1, + ACTIONS(781), 1, sym_name_identifier, - ACTIONS(1403), 1, + ACTIONS(785), 1, sym_float_number_literal, - ACTIONS(1405), 1, + ACTIONS(787), 1, sym_number_literal, - ACTIONS(1407), 1, + ACTIONS(789), 1, anon_sym_DQUOTE, - ACTIONS(1409), 1, + ACTIONS(791), 1, anon_sym_SQUOTE, - STATE(897), 1, + STATE(750), 1, + sym_extended_name, + STATE(898), 1, sym_type_subexpression, - STATE(997), 1, + STATE(981), 1, + sym_name_expression, + STATE(1186), 1, sym_subexpression_token, - STATE(1411), 1, + STATE(1958), 1, aux_sym_name_expression_repeat1, - STATE(1774), 1, + STATE(2251), 1, aux_sym_name_expression_repeat2, - STATE(2320), 1, + STATE(2470), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1397), 2, + ACTIONS(779), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1401), 2, + ACTIONS(783), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(532), 2, + STATE(504), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(895), 2, - sym_extended_name, - sym_literal, - STATE(913), 2, + STATE(999), 2, sym_string_literal, sym_char_literal, - STATE(1038), 2, + STATE(1000), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 17, + sym_access_expression, + sym_literal, + ACTIONS(409), 17, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -53429,60 +55214,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, anon_sym_PIPE, + anon_sym_DASH_GT, sym_operator, - [34466] = 22, + [35283] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(407), 1, anon_sym_RBRACE, - ACTIONS(1411), 1, + ACTIONS(1109), 1, anon_sym_LPAREN, - ACTIONS(1415), 1, + ACTIONS(1113), 1, sym_name_identifier, - ACTIONS(1419), 1, + ACTIONS(1117), 1, sym_float_number_literal, - ACTIONS(1421), 1, + ACTIONS(1119), 1, sym_number_literal, - ACTIONS(1423), 1, + ACTIONS(1121), 1, anon_sym_DQUOTE, - ACTIONS(1425), 1, + ACTIONS(1123), 1, anon_sym_SQUOTE, - STATE(833), 1, + STATE(831), 1, + sym_extended_name, + STATE(909), 1, + sym_name_expression, + STATE(969), 1, sym_type_subexpression, - STATE(1056), 1, + STATE(1034), 1, sym_subexpression_token, - STATE(1399), 1, + STATE(1940), 1, aux_sym_name_expression_repeat1, - STATE(1730), 1, + STATE(2270), 1, aux_sym_name_expression_repeat2, - STATE(2355), 1, + STATE(2475), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1413), 2, + ACTIONS(1111), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1417), 2, + ACTIONS(1115), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(535), 2, + STATE(507), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(807), 2, + STATE(1189), 2, sym_string_literal, sym_char_literal, - STATE(835), 2, - sym_extended_name, - sym_literal, - STATE(978), 2, + STATE(1188), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 17, + sym_access_expression, + sym_literal, + ACTIONS(409), 17, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -53500,57 +55285,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH_GT, sym_operator, - [34556] = 22, + [35373] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(509), 1, + ACTIONS(411), 1, anon_sym_RBRACE, - ACTIONS(1411), 1, - anon_sym_LPAREN, ACTIONS(1415), 1, - sym_name_identifier, - ACTIONS(1419), 1, - sym_float_number_literal, + anon_sym_LPAREN, ACTIONS(1421), 1, + sym_name_identifier, + ACTIONS(1427), 1, + sym_float_number_literal, + ACTIONS(1430), 1, sym_number_literal, - ACTIONS(1423), 1, + ACTIONS(1433), 1, anon_sym_DQUOTE, - ACTIONS(1425), 1, + ACTIONS(1436), 1, anon_sym_SQUOTE, - STATE(833), 1, + STATE(831), 1, + sym_extended_name, + STATE(909), 1, + sym_name_expression, + STATE(969), 1, sym_type_subexpression, - STATE(1056), 1, + STATE(1034), 1, sym_subexpression_token, - STATE(1399), 1, + STATE(1940), 1, aux_sym_name_expression_repeat1, - STATE(1730), 1, + STATE(2270), 1, aux_sym_name_expression_repeat2, - STATE(2355), 1, + STATE(2475), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1413), 2, + ACTIONS(1418), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1417), 2, + ACTIONS(1424), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(537), 2, + STATE(507), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(807), 2, + STATE(1189), 2, sym_string_literal, sym_char_literal, - STATE(835), 2, - sym_extended_name, - sym_literal, - STATE(978), 2, + STATE(1188), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 17, + sym_access_expression, + sym_literal, + ACTIONS(413), 17, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -53568,57 +55353,399 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_DASH_GT, sym_operator, - [34646] = 22, + [35463] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(343), 1, anon_sym_RBRACE, - ACTIONS(749), 1, - sym_name_identifier, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - ACTIONS(1155), 1, + ACTIONS(1051), 1, + anon_sym_COLON, + ACTIONS(1439), 1, anon_sym_LPAREN, - STATE(849), 1, + ACTIONS(1443), 1, + sym_name_identifier, + ACTIONS(1447), 1, + sym_float_number_literal, + ACTIONS(1449), 1, + sym_number_literal, + ACTIONS(1451), 1, + anon_sym_DQUOTE, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + STATE(878), 1, + sym_extended_name, + STATE(989), 1, + sym_name_expression, + STATE(1102), 1, sym_type_subexpression, - STATE(1030), 1, + STATE(1266), 1, sym_subexpression_token, - STATE(1449), 1, + STATE(1994), 1, aux_sym_name_expression_repeat1, - STATE(1761), 1, + STATE(2268), 1, aux_sym_name_expression_repeat2, - STATE(2330), 1, + STATE(2477), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1157), 2, + ACTIONS(1441), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1159), 2, + ACTIONS(1445), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(531), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1219), 2, + sym_string_literal, + sym_char_literal, + STATE(1224), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 16, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [35555] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(663), 1, + sym_name_identifier, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, + sym_float_number_literal, + ACTIONS(1463), 1, + sym_number_literal, + ACTIONS(1465), 1, + anon_sym_DQUOTE, + ACTIONS(1467), 1, + anon_sym_SQUOTE, + STATE(914), 1, + sym_extended_name, + STATE(1053), 1, + sym_type_subexpression, + STATE(1159), 1, + sym_name_expression, + STATE(1282), 1, + sym_subexpression_token, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2467), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1457), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1459), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(514), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1279), 2, + sym_string_literal, + sym_char_literal, + STATE(1247), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 16, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [35647] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + ts_builtin_sym_end, + ACTIONS(649), 1, + sym_name_identifier, + ACTIONS(721), 1, + anon_sym_LPAREN, + ACTIONS(727), 1, + sym_float_number_literal, + ACTIONS(729), 1, + sym_number_literal, + ACTIONS(731), 1, + anon_sym_DQUOTE, + ACTIONS(733), 1, + anon_sym_SQUOTE, + STATE(807), 1, + sym_extended_name, + STATE(946), 1, + sym_type_subexpression, + STATE(951), 1, + sym_name_expression, + STATE(1009), 1, + sym_subexpression_token, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2538), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(723), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(725), 2, sym_type_identifier, sym_abstract_type_identifier, STATE(512), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(837), 2, + STATE(1084), 2, sym_string_literal, sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(1131), 2, + STATE(1088), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 17, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [35737] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1469), 1, + anon_sym_LPAREN, + ACTIONS(1475), 1, + sym_name_identifier, + ACTIONS(1481), 1, + sym_float_number_literal, + ACTIONS(1484), 1, + sym_number_literal, + ACTIONS(1487), 1, + anon_sym_DQUOTE, + ACTIONS(1490), 1, + anon_sym_SQUOTE, + STATE(855), 1, + sym_extended_name, + STATE(880), 1, sym_name_expression, - ACTIONS(487), 17, + STATE(945), 1, + sym_type_subexpression, + STATE(1025), 1, + sym_subexpression_token, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2517), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1472), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1478), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(511), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1152), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1153), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 15, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [35827] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(1493), 1, + anon_sym_LPAREN, + ACTIONS(1499), 1, + sym_name_identifier, + ACTIONS(1505), 1, + sym_float_number_literal, + ACTIONS(1508), 1, + sym_number_literal, + ACTIONS(1511), 1, + anon_sym_DQUOTE, + ACTIONS(1514), 1, + anon_sym_SQUOTE, + STATE(807), 1, + sym_extended_name, + STATE(946), 1, + sym_type_subexpression, + STATE(951), 1, + sym_name_expression, + STATE(1009), 1, + sym_subexpression_token, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2538), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1496), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1502), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(512), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1084), 2, + sym_string_literal, + sym_char_literal, + STATE(1088), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 17, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [35917] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RBRACE, + ACTIONS(1149), 1, + sym_name_identifier, + ACTIONS(1323), 1, + anon_sym_LPAREN, + ACTIONS(1329), 1, + sym_float_number_literal, + ACTIONS(1331), 1, + sym_number_literal, + ACTIONS(1333), 1, + anon_sym_DQUOTE, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + STATE(926), 1, + sym_extended_name, + STATE(1066), 1, + sym_type_subexpression, + STATE(1170), 1, + sym_name_expression, + STATE(1277), 1, + sym_subexpression_token, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2469), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1325), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1327), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1218), 2, + sym_string_literal, + sym_char_literal, + STATE(1217), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 16, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -53633,60 +55760,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [34736] = 22, + [36006] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, + ACTIONS(407), 1, anon_sym_RBRACE, - ACTIONS(1427), 1, - anon_sym_LPAREN, - ACTIONS(1433), 1, + ACTIONS(663), 1, sym_name_identifier, - ACTIONS(1439), 1, + ACTIONS(1455), 1, + anon_sym_LPAREN, + ACTIONS(1461), 1, sym_float_number_literal, - ACTIONS(1442), 1, + ACTIONS(1463), 1, sym_number_literal, - ACTIONS(1445), 1, + ACTIONS(1465), 1, anon_sym_DQUOTE, - ACTIONS(1448), 1, + ACTIONS(1467), 1, anon_sym_SQUOTE, - STATE(833), 1, + STATE(914), 1, + sym_extended_name, + STATE(1053), 1, sym_type_subexpression, - STATE(1056), 1, + STATE(1159), 1, + sym_name_expression, + STATE(1282), 1, sym_subexpression_token, - STATE(1399), 1, + STATE(1974), 1, aux_sym_name_expression_repeat1, - STATE(1730), 1, + STATE(2318), 1, aux_sym_name_expression_repeat2, - STATE(2355), 1, + STATE(2467), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1430), 2, + ACTIONS(1457), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1436), 2, + ACTIONS(1459), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(537), 2, + STATE(529), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(807), 2, + STATE(1279), 2, sym_string_literal, sym_char_literal, - STATE(835), 2, - sym_extended_name, - sym_literal, - STATE(978), 2, + STATE(1247), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 16, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_operator, + [36095] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1517), 1, + anon_sym_LPAREN, + ACTIONS(1523), 1, + sym_name_identifier, + ACTIONS(1529), 1, + sym_float_number_literal, + ACTIONS(1532), 1, + sym_number_literal, + ACTIONS(1535), 1, + anon_sym_DQUOTE, + ACTIONS(1538), 1, + anon_sym_SQUOTE, + STATE(955), 1, + sym_extended_name, + STATE(1055), 1, + sym_type_subexpression, + STATE(1133), 1, sym_name_expression, - ACTIONS(387), 17, + STATE(1280), 1, + sym_subexpression_token, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2532), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1520), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1526), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(515), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1259), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1261), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 14, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [36184] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(1541), 1, + anon_sym_LPAREN, + ACTIONS(1545), 1, + sym_name_identifier, + ACTIONS(1549), 1, + sym_float_number_literal, + ACTIONS(1551), 1, + sym_number_literal, + ACTIONS(1553), 1, + anon_sym_DQUOTE, + ACTIONS(1555), 1, + anon_sym_SQUOTE, + STATE(1103), 1, + sym_extended_name, + STATE(1205), 1, + sym_type_subexpression, + STATE(1256), 1, + sym_name_expression, + STATE(1314), 1, + sym_subexpression_token, + STATE(2017), 1, + aux_sym_name_expression_repeat1, + STATE(2224), 1, + aux_sym_name_expression_repeat2, + STATE(2544), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1543), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1547), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(542), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1320), 2, + sym_string_literal, + sym_char_literal, + STATE(1321), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 15, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -53701,1072 +55963,804 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, sym_operator, - [34826] = 22, + [36275] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(1451), 1, - anon_sym_LPAREN, - ACTIONS(1457), 1, + ACTIONS(1135), 1, sym_name_identifier, - ACTIONS(1463), 1, + ACTIONS(1229), 1, + anon_sym_LPAREN, + ACTIONS(1235), 1, sym_float_number_literal, - ACTIONS(1466), 1, + ACTIONS(1237), 1, sym_number_literal, - ACTIONS(1469), 1, + ACTIONS(1239), 1, anon_sym_DQUOTE, - ACTIONS(1472), 1, + ACTIONS(1241), 1, anon_sym_SQUOTE, - STATE(849), 1, + STATE(955), 1, + sym_extended_name, + STATE(1055), 1, sym_type_subexpression, - STATE(1030), 1, + STATE(1133), 1, + sym_name_expression, + STATE(1280), 1, sym_subexpression_token, - STATE(1449), 1, + STATE(2019), 1, aux_sym_name_expression_repeat1, - STATE(1761), 1, + STATE(2237), 1, aux_sym_name_expression_repeat2, - STATE(2330), 1, + STATE(2532), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1454), 2, + ACTIONS(1231), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1460), 2, + ACTIONS(1233), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(515), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1259), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1261), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 14, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [36364] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(1557), 1, + anon_sym_LPAREN, + ACTIONS(1563), 1, + sym_name_identifier, + ACTIONS(1569), 1, + sym_float_number_literal, + ACTIONS(1572), 1, + sym_number_literal, + ACTIONS(1575), 1, + anon_sym_DQUOTE, + ACTIONS(1578), 1, + anon_sym_SQUOTE, + STATE(812), 1, + sym_extended_name, + STATE(1075), 1, + sym_name_expression, + STATE(1076), 1, + sym_type_subexpression, + STATE(1275), 1, + sym_subexpression_token, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2548), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1560), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1566), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(518), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1242), 2, + sym_string_literal, + sym_char_literal, + STATE(1241), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 16, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [36453] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(693), 1, + sym_name_identifier, + ACTIONS(1375), 1, + anon_sym_COLON, + ACTIONS(1581), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, + sym_float_number_literal, + ACTIONS(1589), 1, + sym_number_literal, + ACTIONS(1591), 1, + anon_sym_DQUOTE, + ACTIONS(1593), 1, + anon_sym_SQUOTE, + STATE(1178), 1, + sym_extended_name, + STATE(1216), 1, + sym_name_expression, + STATE(1292), 1, + sym_type_subexpression, + STATE(1332), 1, + sym_subexpression_token, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2504), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1583), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1585), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(535), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1348), 2, + sym_string_literal, + sym_char_literal, + STATE(1349), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 15, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [36544] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + anon_sym_RBRACE, + ACTIONS(1595), 1, + anon_sym_LPAREN, + ACTIONS(1601), 1, + sym_name_identifier, + ACTIONS(1607), 1, + sym_float_number_literal, + ACTIONS(1610), 1, + sym_number_literal, + ACTIONS(1613), 1, + anon_sym_DQUOTE, + ACTIONS(1616), 1, + anon_sym_SQUOTE, + STATE(926), 1, + sym_extended_name, + STATE(1066), 1, + sym_type_subexpression, + STATE(1170), 1, + sym_name_expression, + STATE(1277), 1, + sym_subexpression_token, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2469), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1598), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1604), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(520), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1218), 2, + sym_string_literal, + sym_char_literal, + STATE(1217), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 16, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + [36633] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + ts_builtin_sym_end, + ACTIONS(999), 1, + sym_name_identifier, + ACTIONS(1377), 1, + anon_sym_LPAREN, + ACTIONS(1383), 1, + sym_float_number_literal, + ACTIONS(1385), 1, + sym_number_literal, + ACTIONS(1387), 1, + anon_sym_DQUOTE, + ACTIONS(1389), 1, + anon_sym_SQUOTE, + STATE(812), 1, + sym_extended_name, + STATE(1075), 1, + sym_name_expression, + STATE(1076), 1, + sym_type_subexpression, + STATE(1275), 1, + sym_subexpression_token, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2548), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1379), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1381), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(518), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1242), 2, + sym_string_literal, + sym_char_literal, + STATE(1241), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 16, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_operator, + [36722] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1307), 1, + anon_sym_LPAREN, + ACTIONS(1311), 1, + sym_name_identifier, + ACTIONS(1315), 1, + sym_float_number_literal, + ACTIONS(1317), 1, + sym_number_literal, + ACTIONS(1319), 1, + anon_sym_DQUOTE, + ACTIONS(1321), 1, + anon_sym_SQUOTE, + STATE(950), 1, + sym_extended_name, + STATE(1020), 1, + sym_type_subexpression, + STATE(1148), 1, + sym_name_expression, + STATE(1295), 1, + sym_subexpression_token, + STATE(1985), 1, + aux_sym_name_expression_repeat1, + STATE(2292), 1, + aux_sym_name_expression_repeat2, + STATE(2479), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1309), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1313), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(525), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1221), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 14, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [36811] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + ts_builtin_sym_end, + ACTIONS(1267), 1, + anon_sym_LPAREN, + ACTIONS(1271), 1, + sym_name_identifier, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + STATE(737), 1, + sym_extended_name, + STATE(1026), 1, + sym_name_expression, + STATE(1028), 1, + sym_type_subexpression, + STATE(1296), 1, + sym_subexpression_token, + STATE(1951), 1, + aux_sym_name_expression_repeat1, + STATE(2264), 1, + aux_sym_name_expression_repeat2, + STATE(2519), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1269), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1273), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(532), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1268), 2, + sym_string_literal, + sym_char_literal, + STATE(1260), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 16, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_operator, + [36900] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(1619), 1, + anon_sym_LPAREN, + ACTIONS(1623), 1, + sym_name_identifier, + ACTIONS(1627), 1, + sym_float_number_literal, + ACTIONS(1629), 1, + sym_number_literal, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + STATE(996), 1, + sym_extended_name, + STATE(1245), 1, + sym_type_subexpression, + STATE(1291), 1, + sym_name_expression, + STATE(1355), 1, + sym_subexpression_token, + STATE(1999), 1, + aux_sym_name_expression_repeat1, + STATE(2257), 1, + aux_sym_name_expression_repeat2, + STATE(2472), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1621), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1625), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(540), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1333), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(343), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1328), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 13, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [36991] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1635), 1, + anon_sym_LPAREN, + ACTIONS(1641), 1, + sym_name_identifier, + ACTIONS(1647), 1, + sym_float_number_literal, + ACTIONS(1650), 1, + sym_number_literal, + ACTIONS(1653), 1, + anon_sym_DQUOTE, + ACTIONS(1656), 1, + anon_sym_SQUOTE, + STATE(950), 1, + sym_extended_name, + STATE(1020), 1, + sym_type_subexpression, + STATE(1148), 1, + sym_name_expression, + STATE(1295), 1, + sym_subexpression_token, + STATE(1985), 1, + aux_sym_name_expression_repeat1, + STATE(2292), 1, + aux_sym_name_expression_repeat2, + STATE(2479), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1638), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1644), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(525), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1222), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1221), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 14, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [37080] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1659), 1, + anon_sym_LPAREN, + ACTIONS(1665), 1, + sym_name_identifier, + ACTIONS(1671), 1, + sym_float_number_literal, + ACTIONS(1674), 1, + sym_number_literal, + ACTIONS(1677), 1, + anon_sym_DQUOTE, + ACTIONS(1680), 1, + anon_sym_SQUOTE, + STATE(973), 1, + sym_extended_name, + STATE(1007), 1, + sym_type_subexpression, + STATE(1086), 1, + sym_name_expression, + STATE(1302), 1, + sym_subexpression_token, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2550), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1662), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1668), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(526), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1265), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1264), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 14, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [37169] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(747), 1, + sym_name_identifier, + ACTIONS(1337), 1, + anon_sym_LPAREN, + ACTIONS(1343), 1, + sym_float_number_literal, + ACTIONS(1345), 1, + sym_number_literal, + ACTIONS(1347), 1, + anon_sym_DQUOTE, + ACTIONS(1349), 1, + anon_sym_SQUOTE, + STATE(973), 1, + sym_extended_name, + STATE(1007), 1, + sym_type_subexpression, + STATE(1086), 1, + sym_name_expression, + STATE(1302), 1, + sym_subexpression_token, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2550), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1339), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1341), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(526), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1265), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1264), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 14, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [37258] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1375), 1, + anon_sym_COLON, + ACTIONS(1683), 1, + anon_sym_LPAREN, + ACTIONS(1689), 1, + sym_float_number_literal, + ACTIONS(1691), 1, + sym_number_literal, + ACTIONS(1693), 1, + anon_sym_DQUOTE, + ACTIONS(1695), 1, + anon_sym_SQUOTE, + STATE(1036), 1, + sym_extended_name, + STATE(1267), 1, + sym_type_subexpression, + STATE(1281), 1, + sym_name_expression, + STATE(1309), 1, + sym_subexpression_token, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2527), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1685), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1687), 2, sym_type_identifier, sym_abstract_type_identifier, STATE(538), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(837), 2, + STATE(1331), 2, sym_string_literal, sym_char_literal, - STATE(851), 2, - sym_extended_name, - sym_literal, - STATE(1131), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [34916] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(945), 1, - sym_name_identifier, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - ACTIONS(1475), 1, - anon_sym_LPAREN, - STATE(1052), 1, - sym_type_subexpression, - STATE(1243), 1, - sym_subexpression_token, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2350), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1477), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1479), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(559), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(1206), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, + ACTIONS(343), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(511), 14, + STATE(1339), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 13, anon_sym_const, anon_sym_var, anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [35005] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(1481), 1, - anon_sym_LPAREN, - ACTIONS(1487), 1, - sym_name_identifier, - ACTIONS(1493), 1, - sym_float_number_literal, - ACTIONS(1496), 1, - sym_number_literal, - ACTIONS(1499), 1, - anon_sym_DQUOTE, - ACTIONS(1502), 1, - anon_sym_SQUOTE, - STATE(1115), 1, - sym_type_subexpression, - STATE(1208), 1, - sym_subexpression_token, - STATE(1436), 1, - aux_sym_name_expression_repeat1, - STATE(1826), 1, - aux_sym_name_expression_repeat2, - STATE(2321), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1484), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1490), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(540), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(1236), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 16, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [35094] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_LPAREN, - ACTIONS(1509), 1, - sym_name_identifier, - ACTIONS(1513), 1, - sym_float_number_literal, - ACTIONS(1515), 1, - sym_number_literal, - ACTIONS(1517), 1, - anon_sym_DQUOTE, - ACTIONS(1519), 1, - anon_sym_SQUOTE, - STATE(1153), 1, - sym_type_subexpression, - STATE(1187), 1, - sym_subexpression_token, - STATE(1398), 1, - aux_sym_name_expression_repeat1, - STATE(1723), 1, - aux_sym_name_expression_repeat2, - STATE(2353), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1507), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1511), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(543), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1058), 2, - sym_string_literal, - sym_char_literal, - STATE(1147), 2, - sym_extended_name, - sym_literal, - STATE(1276), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 16, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - [35183] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1521), 1, - anon_sym_LPAREN, - STATE(1043), 1, - sym_type_subexpression, - STATE(1190), 1, - sym_subexpression_token, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2339), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1523), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1525), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(550), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(1211), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 16, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_operator, - [35272] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RBRACE, - ACTIONS(1505), 1, - anon_sym_LPAREN, - ACTIONS(1509), 1, - sym_name_identifier, - ACTIONS(1513), 1, - sym_float_number_literal, - ACTIONS(1515), 1, - sym_number_literal, - ACTIONS(1517), 1, - anon_sym_DQUOTE, - ACTIONS(1519), 1, - anon_sym_SQUOTE, - STATE(1153), 1, - sym_type_subexpression, - STATE(1187), 1, - sym_subexpression_token, - STATE(1398), 1, - aux_sym_name_expression_repeat1, - STATE(1723), 1, - aux_sym_name_expression_repeat2, - STATE(2353), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1507), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1511), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(545), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1058), 2, - sym_string_literal, - sym_char_literal, - STATE(1147), 2, - sym_extended_name, - sym_literal, - STATE(1276), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 16, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - [35361] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, - ACTIONS(1527), 1, - anon_sym_LPAREN, - ACTIONS(1531), 1, - sym_name_identifier, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - STATE(1027), 1, - sym_type_subexpression, - STATE(1199), 1, - sym_subexpression_token, - STATE(1430), 1, - aux_sym_name_expression_repeat1, - STATE(1783), 1, - aux_sym_name_expression_repeat2, - STATE(2341), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1529), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1533), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(549), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1051), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - STATE(1188), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 16, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_operator, - [35450] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(1543), 1, - anon_sym_LPAREN, - ACTIONS(1549), 1, - sym_name_identifier, - ACTIONS(1555), 1, - sym_float_number_literal, - ACTIONS(1558), 1, - sym_number_literal, - ACTIONS(1561), 1, - anon_sym_DQUOTE, - ACTIONS(1564), 1, - anon_sym_SQUOTE, - STATE(1153), 1, - sym_type_subexpression, - STATE(1187), 1, - sym_subexpression_token, - STATE(1398), 1, - aux_sym_name_expression_repeat1, - STATE(1723), 1, - aux_sym_name_expression_repeat2, - STATE(2353), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1546), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1552), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(545), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1058), 2, - sym_string_literal, - sym_char_literal, - STATE(1147), 2, - sym_extended_name, - sym_literal, - STATE(1276), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 16, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - [35539] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1567), 1, - anon_sym_LPAREN, - ACTIONS(1573), 1, - sym_name_identifier, - ACTIONS(1579), 1, - sym_float_number_literal, - ACTIONS(1582), 1, - sym_number_literal, - ACTIONS(1585), 1, - anon_sym_DQUOTE, - ACTIONS(1588), 1, - anon_sym_SQUOTE, - STATE(1040), 1, - sym_type_subexpression, - STATE(1249), 1, - sym_subexpression_token, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2332), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1570), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1576), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(546), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(1287), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(387), 14, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [35628] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - ACTIONS(1591), 1, - anon_sym_LPAREN, - STATE(1040), 1, - sym_type_subexpression, - STATE(1249), 1, - sym_subexpression_token, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2332), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1593), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1595), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(546), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(1287), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 14, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [35717] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1069), 1, - sym_name_identifier, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - ACTIONS(1591), 1, - anon_sym_LPAREN, - STATE(1040), 1, - sym_type_subexpression, - STATE(1249), 1, - sym_subexpression_token, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2332), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1593), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1595), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(547), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(1287), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 14, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [35806] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - ts_builtin_sym_end, - ACTIONS(1597), 1, - anon_sym_LPAREN, - ACTIONS(1603), 1, - sym_name_identifier, - ACTIONS(1609), 1, - sym_float_number_literal, - ACTIONS(1612), 1, - sym_number_literal, - ACTIONS(1615), 1, - anon_sym_DQUOTE, - ACTIONS(1618), 1, - anon_sym_SQUOTE, - STATE(1027), 1, - sym_type_subexpression, - STATE(1199), 1, - sym_subexpression_token, - STATE(1430), 1, - aux_sym_name_expression_repeat1, - STATE(1783), 1, - aux_sym_name_expression_repeat2, - STATE(2341), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1600), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1606), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(549), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1051), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - STATE(1188), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 16, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_operator, - [35895] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - ts_builtin_sym_end, - ACTIONS(837), 1, - sym_name_identifier, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(1521), 1, - anon_sym_LPAREN, - STATE(1043), 1, - sym_type_subexpression, - STATE(1190), 1, - sym_subexpression_token, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2339), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1523), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1525), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(555), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(1211), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 16, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_operator, - [35984] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(945), 1, - sym_name_identifier, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - ACTIONS(1475), 1, - anon_sym_LPAREN, - STATE(1052), 1, - sym_type_subexpression, - STATE(1243), 1, - sym_subexpression_token, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2350), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1477), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1479), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(539), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(1206), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 14, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [36073] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(1527), 1, - anon_sym_LPAREN, - ACTIONS(1531), 1, - sym_name_identifier, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - STATE(1027), 1, - sym_type_subexpression, - STATE(1199), 1, - sym_subexpression_token, - STATE(1430), 1, - aux_sym_name_expression_repeat1, - STATE(1783), 1, - aux_sym_name_expression_repeat2, - STATE(2341), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1529), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1533), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(544), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1051), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - STATE(1188), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 16, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_operator, - [36162] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1621), 1, - anon_sym_LPAREN, - ACTIONS(1627), 1, - sym_name_identifier, - ACTIONS(1633), 1, - sym_float_number_literal, - ACTIONS(1636), 1, - sym_number_literal, - ACTIONS(1639), 1, - anon_sym_DQUOTE, - ACTIONS(1642), 1, - anon_sym_SQUOTE, - STATE(999), 1, - sym_type_subexpression, - STATE(1247), 1, - sym_subexpression_token, - STATE(1408), 1, - aux_sym_name_expression_repeat1, - STATE(1752), 1, - aux_sym_name_expression_repeat2, - STATE(2368), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1624), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1630), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(553), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(996), 2, - sym_extended_name, - sym_literal, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - STATE(1270), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(387), 14, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_match, anon_sym_if, anon_sym_do, @@ -54777,459 +56771,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [36251] = 22, + [37349] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1645), 1, - anon_sym_LPAREN, - ACTIONS(1649), 1, - sym_name_identifier, - ACTIONS(1653), 1, - sym_float_number_literal, - ACTIONS(1655), 1, - sym_number_literal, - ACTIONS(1657), 1, - anon_sym_DQUOTE, - ACTIONS(1659), 1, - anon_sym_SQUOTE, - STATE(999), 1, - sym_type_subexpression, - STATE(1247), 1, - sym_subexpression_token, - STATE(1408), 1, - aux_sym_name_expression_repeat1, - STATE(1752), 1, - aux_sym_name_expression_repeat2, - STATE(2368), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1647), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1651), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(553), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(996), 2, - sym_extended_name, - sym_literal, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - STATE(1270), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, + ACTIONS(411), 1, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 14, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [36340] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - ts_builtin_sym_end, - ACTIONS(1661), 1, - anon_sym_LPAREN, - ACTIONS(1667), 1, - sym_name_identifier, - ACTIONS(1673), 1, - sym_float_number_literal, - ACTIONS(1676), 1, - sym_number_literal, - ACTIONS(1679), 1, - anon_sym_DQUOTE, - ACTIONS(1682), 1, - anon_sym_SQUOTE, - STATE(1043), 1, - sym_type_subexpression, - STATE(1190), 1, - sym_subexpression_token, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2339), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1664), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1670), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(555), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(1211), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 16, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_operator, - [36429] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1645), 1, - anon_sym_LPAREN, - ACTIONS(1649), 1, - sym_name_identifier, - ACTIONS(1653), 1, - sym_float_number_literal, - ACTIONS(1655), 1, - sym_number_literal, - ACTIONS(1657), 1, - anon_sym_DQUOTE, - ACTIONS(1659), 1, - anon_sym_SQUOTE, - STATE(999), 1, - sym_type_subexpression, - STATE(1247), 1, - sym_subexpression_token, - STATE(1408), 1, - aux_sym_name_expression_repeat1, - STATE(1752), 1, - aux_sym_name_expression_repeat2, - STATE(2368), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1647), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1651), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(554), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(996), 2, - sym_extended_name, - sym_literal, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - STATE(1270), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 14, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [36518] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RBRACE, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(1685), 1, - anon_sym_LPAREN, - STATE(987), 1, - sym_type_subexpression, - STATE(1253), 1, - sym_subexpression_token, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2385), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1687), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1689), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(558), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(1274), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 16, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_operator, - [36607] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RBRACE, - ACTIONS(727), 1, - sym_name_identifier, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(1685), 1, - anon_sym_LPAREN, - STATE(987), 1, - sym_type_subexpression, - STATE(1253), 1, - sym_subexpression_token, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2385), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1687), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1689), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(560), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(1274), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 16, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_operator, - [36696] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1691), 1, - anon_sym_LPAREN, ACTIONS(1697), 1, - sym_name_identifier, - ACTIONS(1703), 1, - sym_float_number_literal, - ACTIONS(1706), 1, - sym_number_literal, - ACTIONS(1709), 1, - anon_sym_DQUOTE, - ACTIONS(1712), 1, - anon_sym_SQUOTE, - STATE(1052), 1, - sym_type_subexpression, - STATE(1243), 1, - sym_subexpression_token, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2350), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1694), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1700), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(559), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(1206), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(387), 14, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [36785] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(1715), 1, anon_sym_LPAREN, - ACTIONS(1721), 1, + ACTIONS(1703), 1, sym_name_identifier, - ACTIONS(1727), 1, + ACTIONS(1709), 1, sym_float_number_literal, - ACTIONS(1730), 1, + ACTIONS(1712), 1, sym_number_literal, - ACTIONS(1733), 1, + ACTIONS(1715), 1, anon_sym_DQUOTE, - ACTIONS(1736), 1, + ACTIONS(1718), 1, anon_sym_SQUOTE, - STATE(987), 1, + STATE(914), 1, + sym_extended_name, + STATE(1053), 1, sym_type_subexpression, - STATE(1253), 1, + STATE(1159), 1, + sym_name_expression, + STATE(1282), 1, sym_subexpression_token, - STATE(1458), 1, + STATE(1974), 1, aux_sym_name_expression_repeat1, - STATE(1796), 1, + STATE(2318), 1, aux_sym_name_expression_repeat2, - STATE(2385), 1, + STATE(2467), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1718), 2, + ACTIONS(1700), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1724), 2, + ACTIONS(1706), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(560), 2, + STATE(529), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(971), 2, + STATE(1279), 2, sym_string_literal, sym_char_literal, - STATE(989), 2, - sym_extended_name, - sym_literal, - STATE(1274), 2, + STATE(1247), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 16, + sym_access_expression, + sym_literal, + ACTIONS(413), 16, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -55246,57 +56838,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_elif, anon_sym_else, sym_operator, - [36874] = 22, + [37438] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(411), 1, anon_sym_RBRACE, - ACTIONS(577), 1, - sym_name_identifier, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - ACTIONS(1739), 1, + ACTIONS(1721), 1, anon_sym_LPAREN, - STATE(1115), 1, + ACTIONS(1727), 1, + sym_name_identifier, + ACTIONS(1733), 1, + sym_float_number_literal, + ACTIONS(1736), 1, + sym_number_literal, + ACTIONS(1739), 1, + anon_sym_DQUOTE, + ACTIONS(1742), 1, + anon_sym_SQUOTE, + STATE(878), 1, + sym_extended_name, + STATE(989), 1, + sym_name_expression, + STATE(1102), 1, sym_type_subexpression, - STATE(1208), 1, + STATE(1266), 1, sym_subexpression_token, - STATE(1436), 1, + STATE(1994), 1, aux_sym_name_expression_repeat1, - STATE(1826), 1, + STATE(2268), 1, aux_sym_name_expression_repeat2, - STATE(2321), 1, + STATE(2477), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1741), 2, + ACTIONS(1724), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1743), 2, + ACTIONS(1730), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(562), 2, + STATE(530), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, + STATE(1219), 2, sym_string_literal, sym_char_literal, - STATE(1236), 2, + STATE(1224), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 16, + sym_access_expression, + sym_literal, + ACTIONS(413), 16, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -55310,60 +56902,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_DASH_GT, sym_operator, - [36963] = 22, + [37527] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_RBRACE, - ACTIONS(577), 1, - sym_name_identifier, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - ACTIONS(1739), 1, + ACTIONS(1439), 1, anon_sym_LPAREN, - STATE(1115), 1, + ACTIONS(1443), 1, + sym_name_identifier, + ACTIONS(1447), 1, + sym_float_number_literal, + ACTIONS(1449), 1, + sym_number_literal, + ACTIONS(1451), 1, + anon_sym_DQUOTE, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + STATE(878), 1, + sym_extended_name, + STATE(989), 1, + sym_name_expression, + STATE(1102), 1, sym_type_subexpression, - STATE(1208), 1, + STATE(1266), 1, sym_subexpression_token, - STATE(1436), 1, + STATE(1994), 1, aux_sym_name_expression_repeat1, - STATE(1826), 1, + STATE(2268), 1, aux_sym_name_expression_repeat2, - STATE(2321), 1, + STATE(2477), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1741), 2, + ACTIONS(1441), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1743), 2, + ACTIONS(1445), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(540), 2, + STATE(530), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, + STATE(1219), 2, sym_string_literal, sym_char_literal, - STATE(1236), 2, + STATE(1224), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 16, + sym_access_expression, + sym_literal, + ACTIONS(409), 16, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -55377,192 +56969,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_DASH_GT, sym_operator, - [37052] = 22, + [37616] = 22, ACTIONS(3), 1, sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, ACTIONS(1745), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1751), 1, sym_name_identifier, - ACTIONS(1753), 1, - sym_float_number_literal, - ACTIONS(1755), 1, - sym_number_literal, ACTIONS(1757), 1, + sym_float_number_literal, + ACTIONS(1760), 1, + sym_number_literal, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(1759), 1, + ACTIONS(1766), 1, anon_sym_SQUOTE, - STATE(1202), 1, + STATE(737), 1, + sym_extended_name, + STATE(1026), 1, + sym_name_expression, + STATE(1028), 1, sym_type_subexpression, - STATE(1316), 1, + STATE(1296), 1, sym_subexpression_token, - STATE(1405), 1, + STATE(1951), 1, aux_sym_name_expression_repeat1, - STATE(1762), 1, + STATE(2264), 1, aux_sym_name_expression_repeat2, - STATE(2359), 1, + STATE(2519), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1747), 2, + ACTIONS(1748), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1751), 2, + ACTIONS(1754), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(575), 2, + STATE(532), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1196), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, + STATE(1268), 2, sym_string_literal, sym_char_literal, - STATE(1340), 2, + STATE(1260), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 13, - anon_sym_const, - anon_sym_var, + sym_access_expression, + sym_literal, + ACTIONS(413), 16, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, sym_operator, - [37140] = 22, + [37705] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(923), 1, + ACTIONS(245), 1, sym_name_identifier, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_LPAREN, - STATE(1238), 1, - sym_type_subexpression, - STATE(1328), 1, - sym_subexpression_token, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2367), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1763), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1765), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(573), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(1332), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(487), 13, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [37228] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, + ACTIONS(343), 1, ts_builtin_sym_end, - ACTIONS(1767), 1, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(1769), 1, anon_sym_LPAREN, - ACTIONS(1773), 1, - sym_name_identifier, - ACTIONS(1779), 1, + ACTIONS(1775), 1, sym_float_number_literal, - ACTIONS(1782), 1, + ACTIONS(1777), 1, sym_number_literal, - ACTIONS(1785), 1, + ACTIONS(1779), 1, anon_sym_DQUOTE, - ACTIONS(1788), 1, + ACTIONS(1781), 1, anon_sym_SQUOTE, - STATE(1234), 1, + STATE(751), 1, + sym_extended_name, + STATE(1283), 1, + sym_name_expression, + STATE(1284), 1, sym_type_subexpression, - STATE(1336), 1, + STATE(1352), 1, sym_subexpression_token, - STATE(1396), 1, + STATE(1948), 1, aux_sym_name_expression_repeat1, - STATE(1688), 1, + STATE(2323), 1, aux_sym_name_expression_repeat2, - STATE(2387), 1, + STATE(2503), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1770), 2, + ACTIONS(1771), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1776), 2, + ACTIONS(1773), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(565), 2, + STATE(545), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, + STATE(1344), 2, sym_string_literal, sym_char_literal, - STATE(1333), 2, + STATE(1342), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 15, + sym_access_expression, + sym_literal, + ACTIONS(345), 15, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -55578,57 +57107,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, sym_operator, - [37316] = 22, + [37796] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(411), 1, anon_sym_RBRACE, - ACTIONS(1791), 1, + ACTIONS(1783), 1, anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(1789), 1, sym_name_identifier, - ACTIONS(1799), 1, + ACTIONS(1795), 1, sym_float_number_literal, - ACTIONS(1801), 1, + ACTIONS(1798), 1, sym_number_literal, - ACTIONS(1803), 1, + ACTIONS(1801), 1, anon_sym_DQUOTE, - ACTIONS(1805), 1, + ACTIONS(1804), 1, anon_sym_SQUOTE, - STATE(1291), 1, + STATE(1103), 1, + sym_extended_name, + STATE(1205), 1, sym_type_subexpression, - STATE(1300), 1, + STATE(1256), 1, + sym_name_expression, + STATE(1314), 1, sym_subexpression_token, - STATE(1465), 1, + STATE(2017), 1, aux_sym_name_expression_repeat1, - STATE(1706), 1, + STATE(2224), 1, aux_sym_name_expression_repeat2, - STATE(2322), 1, + STATE(2544), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1793), 2, + ACTIONS(1786), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1797), 2, + ACTIONS(1792), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(567), 2, + STATE(534), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1282), 2, + STATE(1320), 2, sym_string_literal, sym_char_literal, - STATE(1290), 2, - sym_extended_name, - sym_literal, - STATE(1350), 2, + STATE(1321), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 15, + sym_access_expression, + sym_literal, + ACTIONS(413), 15, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -55644,57 +57173,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_AMP, sym_operator, - [37404] = 22, + [37884] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_RBRACE, - ACTIONS(1791), 1, - anon_sym_LPAREN, - ACTIONS(1795), 1, + ACTIONS(693), 1, sym_name_identifier, - ACTIONS(1799), 1, + ACTIONS(1581), 1, + anon_sym_LPAREN, + ACTIONS(1587), 1, sym_float_number_literal, - ACTIONS(1801), 1, + ACTIONS(1589), 1, sym_number_literal, - ACTIONS(1803), 1, + ACTIONS(1591), 1, anon_sym_DQUOTE, - ACTIONS(1805), 1, + ACTIONS(1593), 1, anon_sym_SQUOTE, - STATE(1291), 1, + STATE(1178), 1, + sym_extended_name, + STATE(1216), 1, + sym_name_expression, + STATE(1292), 1, sym_type_subexpression, - STATE(1300), 1, + STATE(1332), 1, sym_subexpression_token, - STATE(1465), 1, + STATE(2020), 1, aux_sym_name_expression_repeat1, - STATE(1706), 1, + STATE(2231), 1, aux_sym_name_expression_repeat2, - STATE(2322), 1, + STATE(2504), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1793), 2, + ACTIONS(1583), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1797), 2, + ACTIONS(1585), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(568), 2, + STATE(536), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1282), 2, + STATE(1348), 2, sym_string_literal, sym_char_literal, - STATE(1290), 2, - sym_extended_name, - sym_literal, - STATE(1350), 2, + STATE(1349), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 15, + sym_access_expression, + sym_literal, + ACTIONS(409), 15, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -55708,12 +57237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, + anon_sym_PIPE, sym_operator, - [37492] = 22, + [37972] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, + ACTIONS(411), 1, anon_sym_RBRACE, ACTIONS(1807), 1, anon_sym_LPAREN, @@ -55727,18 +57256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1828), 1, anon_sym_SQUOTE, - STATE(1291), 1, + STATE(1178), 1, + sym_extended_name, + STATE(1216), 1, + sym_name_expression, + STATE(1292), 1, sym_type_subexpression, - STATE(1300), 1, + STATE(1332), 1, sym_subexpression_token, - STATE(1465), 1, + STATE(2020), 1, aux_sym_name_expression_repeat1, - STATE(1706), 1, + STATE(2231), 1, aux_sym_name_expression_repeat2, - STATE(2322), 1, + STATE(2504), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -55748,85 +57279,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1816), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(568), 2, + STATE(536), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1282), 2, + STATE(1348), 2, sym_string_literal, sym_char_literal, - STATE(1290), 2, - sym_extended_name, - sym_literal, - STATE(1350), 2, + STATE(1349), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 15, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_operator, - [37580] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RBRACE, - ACTIONS(553), 1, - sym_name_identifier, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - ACTIONS(1831), 1, - anon_sym_LPAREN, - STATE(1279), 1, - sym_type_subexpression, - STATE(1317), 1, - sym_subexpression_token, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1675), 1, - aux_sym_name_expression_repeat2, - STATE(2325), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1833), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1835), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(570), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - STATE(1281), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(1337), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 15, + ACTIONS(413), 15, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -55842,125 +57305,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_PIPE, sym_operator, - [37668] = 22, + [38060] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(509), 1, - anon_sym_RBRACE, - ACTIONS(553), 1, - sym_name_identifier, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, ACTIONS(1831), 1, anon_sym_LPAREN, - STATE(1279), 1, - sym_type_subexpression, - STATE(1317), 1, - sym_subexpression_token, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1675), 1, - aux_sym_name_expression_repeat2, - STATE(2325), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1833), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1835), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(572), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(1337), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 15, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_operator, - [37756] = 22, - ACTIONS(3), 1, - sym__line_comment, ACTIONS(1837), 1, - anon_sym_LPAREN, + sym_name_identifier, ACTIONS(1843), 1, - sym_name_identifier, + sym_float_number_literal, + ACTIONS(1846), 1, + sym_number_literal, ACTIONS(1849), 1, - sym_float_number_literal, + anon_sym_DQUOTE, ACTIONS(1852), 1, - sym_number_literal, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1858), 1, anon_sym_SQUOTE, - STATE(1238), 1, + STATE(1036), 1, + sym_extended_name, + STATE(1267), 1, sym_type_subexpression, - STATE(1328), 1, + STATE(1281), 1, + sym_name_expression, + STATE(1309), 1, sym_subexpression_token, - STATE(1418), 1, + STATE(1997), 1, aux_sym_name_expression_repeat1, - STATE(1788), 1, + STATE(2261), 1, aux_sym_name_expression_repeat2, - STATE(2367), 1, + STATE(2527), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(1834), 2, + anon_sym_TILDE, + anon_sym_AT, ACTIONS(1840), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1846), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(571), 2, + STATE(537), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, + STATE(1331), 2, sym_string_literal, sym_char_literal, - STATE(1332), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, + ACTIONS(411), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(387), 13, + STATE(1339), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 13, anon_sym_const, anon_sym_var, anon_sym_PIPE, @@ -55974,128 +57371,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [37844] = 22, + [38148] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, + ACTIONS(1163), 1, + sym_name_identifier, + ACTIONS(1683), 1, + anon_sym_LPAREN, + ACTIONS(1689), 1, + sym_float_number_literal, + ACTIONS(1691), 1, + sym_number_literal, + ACTIONS(1693), 1, + anon_sym_DQUOTE, + ACTIONS(1695), 1, + anon_sym_SQUOTE, + STATE(1036), 1, + sym_extended_name, + STATE(1267), 1, + sym_type_subexpression, + STATE(1281), 1, + sym_name_expression, + STATE(1309), 1, + sym_subexpression_token, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2527), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1685), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1687), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(537), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1331), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1339), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 13, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [38236] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(275), 1, + sym_name_identifier, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(1855), 1, + anon_sym_LPAREN, ACTIONS(1861), 1, - anon_sym_LPAREN, + sym_float_number_literal, + ACTIONS(1863), 1, + sym_number_literal, + ACTIONS(1865), 1, + anon_sym_DQUOTE, ACTIONS(1867), 1, - sym_name_identifier, - ACTIONS(1873), 1, - sym_float_number_literal, - ACTIONS(1876), 1, - sym_number_literal, - ACTIONS(1879), 1, - anon_sym_DQUOTE, - ACTIONS(1882), 1, anon_sym_SQUOTE, - STATE(1279), 1, + STATE(1298), 1, + sym_extended_name, + STATE(1313), 1, sym_type_subexpression, - STATE(1317), 1, + STATE(1340), 1, + sym_name_expression, + STATE(1364), 1, sym_subexpression_token, - STATE(1434), 1, + STATE(2007), 1, aux_sym_name_expression_repeat1, - STATE(1675), 1, + STATE(2228), 1, aux_sym_name_expression_repeat2, - STATE(2325), 1, + STATE(2496), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1864), 2, + ACTIONS(1857), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1870), 2, + ACTIONS(1859), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(572), 2, + STATE(549), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1251), 2, + STATE(1372), 2, sym_string_literal, sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(1337), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 15, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_operator, - [37932] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(923), 1, - sym_name_identifier, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - ACTIONS(1761), 1, - anon_sym_LPAREN, - STATE(1238), 1, - sym_type_subexpression, - STATE(1328), 1, - sym_subexpression_token, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2367), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1763), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1765), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(571), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(1332), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, + ACTIONS(343), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(511), 13, + STATE(1363), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 12, anon_sym_const, anon_sym_var, - anon_sym_PIPE, anon_sym_match, anon_sym_if, anon_sym_do, @@ -56106,57 +57504,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [38020] = 22, + [38326] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - ACTIONS(485), 1, - ts_builtin_sym_end, - ACTIONS(1885), 1, + ACTIONS(1619), 1, anon_sym_LPAREN, - STATE(1234), 1, + ACTIONS(1623), 1, + sym_name_identifier, + ACTIONS(1627), 1, + sym_float_number_literal, + ACTIONS(1629), 1, + sym_number_literal, + ACTIONS(1631), 1, + anon_sym_DQUOTE, + ACTIONS(1633), 1, + anon_sym_SQUOTE, + STATE(996), 1, + sym_extended_name, + STATE(1245), 1, sym_type_subexpression, - STATE(1336), 1, + STATE(1291), 1, + sym_name_expression, + STATE(1355), 1, sym_subexpression_token, - STATE(1396), 1, + STATE(1999), 1, aux_sym_name_expression_repeat1, - STATE(1688), 1, + STATE(2257), 1, aux_sym_name_expression_repeat2, - STATE(2387), 1, + STATE(2472), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1887), 2, + ACTIONS(1621), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1889), 2, + ACTIONS(1625), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(577), 2, + STATE(544), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, + STATE(1333), 2, sym_string_literal, sym_char_literal, - STATE(1333), 2, + ACTIONS(407), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1328), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 13, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [38414] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(1869), 1, + anon_sym_LPAREN, + ACTIONS(1875), 1, + sym_name_identifier, + ACTIONS(1881), 1, + sym_float_number_literal, + ACTIONS(1884), 1, + sym_number_literal, + ACTIONS(1887), 1, + anon_sym_DQUOTE, + ACTIONS(1890), 1, + anon_sym_SQUOTE, + STATE(751), 1, + sym_extended_name, + STATE(1283), 1, sym_name_expression, - ACTIONS(487), 15, + STATE(1284), 1, + sym_type_subexpression, + STATE(1352), 1, + sym_subexpression_token, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2503), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1872), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1878), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(541), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1344), 2, + sym_string_literal, + sym_char_literal, + STATE(1342), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 15, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -56172,125 +57636,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, sym_operator, - [38108] = 22, + [38502] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1745), 1, + ACTIONS(407), 1, + anon_sym_RBRACE, + ACTIONS(1541), 1, anon_sym_LPAREN, - ACTIONS(1749), 1, + ACTIONS(1545), 1, sym_name_identifier, - ACTIONS(1753), 1, + ACTIONS(1549), 1, sym_float_number_literal, - ACTIONS(1755), 1, + ACTIONS(1551), 1, sym_number_literal, - ACTIONS(1757), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1759), 1, + ACTIONS(1555), 1, anon_sym_SQUOTE, - STATE(1202), 1, + STATE(1103), 1, + sym_extended_name, + STATE(1205), 1, sym_type_subexpression, - STATE(1316), 1, + STATE(1256), 1, + sym_name_expression, + STATE(1314), 1, sym_subexpression_token, - STATE(1405), 1, + STATE(2017), 1, aux_sym_name_expression_repeat1, - STATE(1762), 1, + STATE(2224), 1, aux_sym_name_expression_repeat2, - STATE(2359), 1, + STATE(2544), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1747), 2, + ACTIONS(1543), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1751), 2, + ACTIONS(1547), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(576), 2, + STATE(534), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1196), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, + STATE(1320), 2, sym_string_literal, sym_char_literal, - STATE(1340), 2, + STATE(1321), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 13, - anon_sym_const, - anon_sym_var, + sym_access_expression, + sym_literal, + ACTIONS(409), 15, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, sym_operator, - [38196] = 22, + [38590] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1891), 1, - anon_sym_LPAREN, - ACTIONS(1897), 1, + ACTIONS(215), 1, sym_name_identifier, + ACTIONS(343), 1, + anon_sym_RBRACE, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(1893), 1, + anon_sym_LPAREN, + ACTIONS(1899), 1, + sym_float_number_literal, + ACTIONS(1901), 1, + sym_number_literal, ACTIONS(1903), 1, - sym_float_number_literal, - ACTIONS(1906), 1, - sym_number_literal, - ACTIONS(1909), 1, anon_sym_DQUOTE, - ACTIONS(1912), 1, + ACTIONS(1905), 1, anon_sym_SQUOTE, - STATE(1202), 1, + STATE(1239), 1, + sym_extended_name, + STATE(1315), 1, sym_type_subexpression, - STATE(1316), 1, + STATE(1335), 1, + sym_name_expression, + STATE(1369), 1, sym_subexpression_token, - STATE(1405), 1, + STATE(1959), 1, aux_sym_name_expression_repeat1, - STATE(1762), 1, + STATE(2211), 1, aux_sym_name_expression_repeat2, - STATE(2359), 1, + STATE(2521), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1894), 2, + ACTIONS(1895), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1900), 2, + ACTIONS(1897), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(576), 2, + STATE(548), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1196), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, + STATE(1359), 2, sym_string_literal, sym_char_literal, - STATE(1340), 2, + STATE(1360), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 14, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_operator, + [38680] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1907), 1, + anon_sym_LPAREN, + ACTIONS(1913), 1, + sym_name_identifier, + ACTIONS(1919), 1, + sym_float_number_literal, + ACTIONS(1922), 1, + sym_number_literal, + ACTIONS(1925), 1, + anon_sym_DQUOTE, + ACTIONS(1928), 1, + anon_sym_SQUOTE, + STATE(996), 1, + sym_extended_name, + STATE(1245), 1, + sym_type_subexpression, + STATE(1291), 1, sym_name_expression, - ACTIONS(385), 3, + STATE(1355), 1, + sym_subexpression_token, + STATE(1999), 1, + aux_sym_name_expression_repeat1, + STATE(2257), 1, + aux_sym_name_expression_repeat2, + STATE(2472), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1910), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1916), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(544), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1333), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(387), 13, + STATE(1328), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 13, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -56304,57 +57835,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [38284] = 22, + [38768] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(237), 1, - sym_name_identifier, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, + sym_name_identifier, + ACTIONS(407), 1, ts_builtin_sym_end, - ACTIONS(1885), 1, + ACTIONS(1769), 1, anon_sym_LPAREN, - STATE(1234), 1, + ACTIONS(1775), 1, + sym_float_number_literal, + ACTIONS(1777), 1, + sym_number_literal, + ACTIONS(1779), 1, + anon_sym_DQUOTE, + ACTIONS(1781), 1, + anon_sym_SQUOTE, + STATE(751), 1, + sym_extended_name, + STATE(1283), 1, + sym_name_expression, + STATE(1284), 1, sym_type_subexpression, - STATE(1336), 1, + STATE(1352), 1, sym_subexpression_token, - STATE(1396), 1, + STATE(1948), 1, aux_sym_name_expression_repeat1, - STATE(1688), 1, + STATE(2323), 1, aux_sym_name_expression_repeat2, - STATE(2387), 1, + STATE(2503), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1887), 2, + ACTIONS(1771), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1889), 2, + ACTIONS(1773), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(565), 2, + STATE(541), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, + STATE(1344), 2, sym_string_literal, sym_char_literal, - STATE(1333), 2, + STATE(1342), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 15, + sym_access_expression, + sym_literal, + ACTIONS(409), 15, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -56370,122 +57901,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, sym_operator, - [38372] = 22, + [38856] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1915), 1, + ACTIONS(411), 1, + anon_sym_RBRACE, + ACTIONS(1931), 1, anon_sym_LPAREN, - ACTIONS(1921), 1, + ACTIONS(1937), 1, sym_name_identifier, - ACTIONS(1927), 1, + ACTIONS(1943), 1, sym_float_number_literal, - ACTIONS(1930), 1, + ACTIONS(1946), 1, sym_number_literal, - ACTIONS(1933), 1, + ACTIONS(1949), 1, anon_sym_DQUOTE, - ACTIONS(1936), 1, + ACTIONS(1952), 1, anon_sym_SQUOTE, - STATE(1342), 1, + STATE(1239), 1, + sym_extended_name, + STATE(1315), 1, sym_type_subexpression, - STATE(1356), 1, + STATE(1335), 1, + sym_name_expression, + STATE(1369), 1, sym_subexpression_token, - STATE(1400), 1, + STATE(1959), 1, aux_sym_name_expression_repeat1, - STATE(1678), 1, + STATE(2211), 1, aux_sym_name_expression_repeat2, - STATE(2377), 1, + STATE(2521), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1918), 2, + ACTIONS(1934), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1924), 2, + ACTIONS(1940), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(578), 2, + STATE(546), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1334), 2, + STATE(1359), 2, sym_string_literal, sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(1353), 2, + STATE(1360), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(387), 12, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [38459] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RBRACE, - ACTIONS(1939), 1, - anon_sym_LPAREN, - ACTIONS(1945), 1, - sym_name_identifier, - ACTIONS(1951), 1, - sym_float_number_literal, - ACTIONS(1954), 1, - sym_number_literal, - ACTIONS(1957), 1, - anon_sym_DQUOTE, - ACTIONS(1960), 1, - anon_sym_SQUOTE, - STATE(1327), 1, - sym_type_subexpression, - STATE(1355), 1, - sym_subexpression_token, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(2327), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1942), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1948), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(579), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(1354), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 14, + ACTIONS(413), 14, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -56500,57 +57966,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, sym_operator, - [38546] = 22, + [38943] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(485), 1, - anon_sym_RBRACE, - ACTIONS(1963), 1, + ACTIONS(1955), 1, anon_sym_LPAREN, - STATE(1327), 1, + ACTIONS(1961), 1, + sym_name_identifier, + ACTIONS(1967), 1, + sym_float_number_literal, + ACTIONS(1970), 1, + sym_number_literal, + ACTIONS(1973), 1, + anon_sym_DQUOTE, + ACTIONS(1976), 1, + anon_sym_SQUOTE, + STATE(1298), 1, + sym_extended_name, + STATE(1313), 1, sym_type_subexpression, - STATE(1355), 1, + STATE(1340), 1, + sym_name_expression, + STATE(1364), 1, sym_subexpression_token, - STATE(1442), 1, + STATE(2007), 1, aux_sym_name_expression_repeat1, - STATE(1721), 1, + STATE(2228), 1, aux_sym_name_expression_repeat2, - STATE(2327), 1, + STATE(2496), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1965), 2, + ACTIONS(1958), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1967), 2, + ACTIONS(1964), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(583), 2, + STATE(547), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1302), 2, + STATE(1372), 2, sym_string_literal, sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(1354), 2, + ACTIONS(411), 3, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_SEMI, + STATE(1363), 3, sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 12, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_operator, + [39030] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(215), 1, + sym_name_identifier, + ACTIONS(407), 1, + anon_sym_RBRACE, + ACTIONS(1893), 1, + anon_sym_LPAREN, + ACTIONS(1899), 1, + sym_float_number_literal, + ACTIONS(1901), 1, + sym_number_literal, + ACTIONS(1903), 1, + anon_sym_DQUOTE, + ACTIONS(1905), 1, + anon_sym_SQUOTE, + STATE(1239), 1, + sym_extended_name, + STATE(1315), 1, + sym_type_subexpression, + STATE(1335), 1, sym_name_expression, - ACTIONS(487), 14, + STATE(1369), 1, + sym_subexpression_token, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2521), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1895), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(1897), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(546), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1359), 2, + sym_string_literal, + sym_char_literal, + STATE(1360), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 14, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -56565,59 +58096,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, sym_operator, - [38633] = 22, + [39117] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(277), 1, + ACTIONS(275), 1, sym_name_identifier, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, + ACTIONS(1855), 1, anon_sym_LPAREN, - STATE(1342), 1, + ACTIONS(1861), 1, + sym_float_number_literal, + ACTIONS(1863), 1, + sym_number_literal, + ACTIONS(1865), 1, + anon_sym_DQUOTE, + ACTIONS(1867), 1, + anon_sym_SQUOTE, + STATE(1298), 1, + sym_extended_name, + STATE(1313), 1, sym_type_subexpression, - STATE(1356), 1, + STATE(1340), 1, + sym_name_expression, + STATE(1364), 1, sym_subexpression_token, - STATE(1400), 1, + STATE(2007), 1, aux_sym_name_expression_repeat1, - STATE(1678), 1, + STATE(2228), 1, aux_sym_name_expression_repeat2, - STATE(2377), 1, + STATE(2496), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1971), 2, + ACTIONS(1857), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(1973), 2, + ACTIONS(1859), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(582), 2, + STATE(547), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1334), 2, + STATE(1372), 2, sym_string_literal, sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(1353), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, + ACTIONS(407), 3, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(487), 12, + STATE(1363), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 12, anon_sym_const, anon_sym_var, anon_sym_match, @@ -56630,183 +58161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, sym_operator, - [38720] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(277), 1, - sym_name_identifier, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - ACTIONS(1969), 1, - anon_sym_LPAREN, - STATE(1342), 1, - sym_type_subexpression, - STATE(1356), 1, - sym_subexpression_token, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(2377), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1971), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1973), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(578), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(1353), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(511), 12, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_operator, - [38807] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(199), 1, - sym_name_identifier, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(509), 1, - anon_sym_RBRACE, - ACTIONS(1963), 1, - anon_sym_LPAREN, - STATE(1327), 1, - sym_type_subexpression, - STATE(1355), 1, - sym_subexpression_token, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(2327), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1965), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(1967), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(579), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(1354), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 14, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_operator, - [38894] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1977), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1975), 37, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [38944] = 4, + [39204] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(1981), 1, @@ -56852,7 +58207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [38994] = 4, + [39254] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(1985), 1, @@ -56898,7 +58253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39044] = 4, + [39304] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(1989), 1, @@ -56944,295 +58299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39094] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1993), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1991), 37, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [39144] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1997), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1995), 37, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [39194] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2001), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1999), 37, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [39244] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2005), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2003), 37, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [39294] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2009), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2007), 37, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [39344] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2013), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2011), 37, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [39394] = 5, + [39354] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 3, + ACTIONS(1993), 4, + anon_sym_COLON, anon_sym_type, anon_sym_AMP, sym_operator, - ACTIONS(2015), 34, + ACTIONS(1991), 33, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57264,18 +58344,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_SEMI, anon_sym_return, - anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39446] = 4, + [39406] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 4, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(1997), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [39458] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2023), 1, + ACTIONS(2003), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(2021), 37, + ACTIONS(2001), 37, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57313,17 +58439,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39496] = 4, + [39508] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2007), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2005), 37, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [39558] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2011), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2009), 37, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [39608] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(487), 3, + ACTIONS(2015), 5, + anon_sym_COLON, anon_sym_type, anon_sym_AMP, + anon_sym_DOT, sym_operator, - ACTIONS(485), 34, + ACTIONS(2013), 33, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57355,66 +58575,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_SEMI, anon_sym_return, - anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39545] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, + [39658] = 4, + ACTIONS(5), 1, sym__doc_comment, - sym__block_comment, - ACTIONS(2027), 3, - anon_sym_type, - anon_sym_AMP, - sym_operator, - ACTIONS(2025), 34, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [39594] = 5, - ACTIONS(3), 1, - sym__line_comment, ACTIONS(2019), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2017), 37, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [39708] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + ACTIONS(2021), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [39758] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2027), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2025), 37, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [39808] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2031), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2029), 37, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [39858] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2035), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2033), 37, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [39908] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [39958] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2043), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2041), 37, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40008] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 2, + ACTIONS(2047), 4, + anon_sym_COLON, anon_sym_type, + anon_sym_AMP, sym_operator, - ACTIONS(2015), 34, + ACTIONS(2045), 33, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57446,20 +58944,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_SEMI, anon_sym_return, - anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39645] = 4, + [40060] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2031), 3, + ACTIONS(2051), 3, anon_sym_type, anon_sym_AMP, sym_operator, - ACTIONS(2029), 34, + ACTIONS(2049), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57494,17 +58991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39694] = 4, + [40109] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2035), 3, + ACTIONS(345), 3, anon_sym_type, anon_sym_AMP, sym_operator, - ACTIONS(2033), 34, + ACTIONS(343), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57539,17 +59036,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39743] = 4, + [40158] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2039), 3, + ACTIONS(2055), 3, anon_sym_type, anon_sym_AMP, sym_operator, - ACTIONS(2037), 34, + ACTIONS(2053), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57584,17 +59081,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39792] = 4, + [40207] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2043), 3, + ACTIONS(2059), 3, anon_sym_type, anon_sym_AMP, sym_operator, - ACTIONS(2041), 34, + ACTIONS(2057), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57629,17 +59126,780 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39841] = 4, + [40256] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(2063), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2061), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40305] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2065), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40354] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2069), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40403] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2073), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40452] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2079), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2077), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40501] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2083), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2081), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40550] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2085), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40599] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2091), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(2089), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40648] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 3, + anon_sym_type, + anon_sym_AMP, + sym_operator, + ACTIONS(343), 33, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [40699] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2051), 2, + anon_sym_type, + sym_operator, + ACTIONS(2049), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40747] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 7, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(1997), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [40797] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2063), 2, + anon_sym_type, + sym_operator, + ACTIONS(2061), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40845] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 3, + anon_sym_COLON, + anon_sym_type, + sym_operator, + ACTIONS(1997), 32, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [40895] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 8, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [40943] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 2, + anon_sym_type, + sym_operator, + ACTIONS(2073), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [40991] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 3, + anon_sym_COLON, + anon_sym_type, + sym_operator, + ACTIONS(1991), 32, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [41041] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_type, + sym_operator, + ACTIONS(343), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [41089] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, ACTIONS(2047), 3, + anon_sym_COLON, anon_sym_type, - anon_sym_AMP, sym_operator, - ACTIONS(2045), 34, + ACTIONS(2045), 32, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57660,7 +59920,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_RPAREN, anon_sym_match, - anon_sym_with, anon_sym_if, anon_sym_then, anon_sym_elif, @@ -57671,20 +59930,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_loop, anon_sym_SEMI, anon_sym_return, - anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39890] = 4, + [41139] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 3, + ACTIONS(2023), 8, + anon_sym_COLON, anon_sym_type, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, sym_operator, - ACTIONS(2015), 34, + ACTIONS(2021), 28, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57703,32 +59966,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_RPAREN, anon_sym_match, - anon_sym_with, anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, anon_sym_do, anon_sym_while, anon_sym_for, anon_sym_loop, anon_sym_SEMI, anon_sym_return, - anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39939] = 4, + [41187] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2039), 2, + ACTIONS(2015), 8, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2013), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [41235] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 4, + anon_sym_COLON, + anon_sym_type, + anon_sym_DOT, + sym_operator, + ACTIONS(2013), 32, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [41283] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 2, anon_sym_type, sym_operator, - ACTIONS(2037), 34, + ACTIONS(2057), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57763,22 +60108,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [39987] = 5, + [41331] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2083), 2, + anon_sym_type, + sym_operator, + ACTIONS(2081), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [41379] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2079), 2, + anon_sym_type, + sym_operator, + ACTIONS(2077), 34, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_with, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_RBRACK, + anon_sym_break, + anon_sym_continue, + [41427] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 6, + ACTIONS(1993), 7, + anon_sym_COLON, anon_sym_type, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - ACTIONS(2015), 29, + ACTIONS(1991), 28, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57797,7 +60231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_RPAREN, anon_sym_match, anon_sym_if, anon_sym_do, @@ -57808,16 +60241,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [40037] = 4, + [41477] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2043), 2, + ACTIONS(2071), 2, anon_sym_type, sym_operator, - ACTIONS(2041), 34, + ACTIONS(2069), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57852,16 +60285,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [40085] = 4, + [41525] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2035), 2, + ACTIONS(2055), 2, anon_sym_type, sym_operator, - ACTIONS(2033), 34, + ACTIONS(2053), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57896,16 +60329,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [40133] = 4, + [41573] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 2, + ACTIONS(2067), 2, anon_sym_type, sym_operator, - ACTIONS(2015), 34, + ACTIONS(2065), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57940,16 +60373,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [40181] = 4, + [41621] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2031), 2, + ACTIONS(2023), 4, + anon_sym_COLON, + anon_sym_type, + anon_sym_DOT, + sym_operator, + ACTIONS(2021), 32, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [41669] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 4, + anon_sym_COLON, + anon_sym_type, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 32, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [41717] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 2, anon_sym_type, sym_operator, - ACTIONS(2029), 34, + ACTIONS(2085), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -57984,16 +60505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [40229] = 4, + [41765] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2027), 2, + ACTIONS(2091), 2, anon_sym_type, sym_operator, - ACTIONS(2025), 34, + ACTIONS(2089), 34, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -58028,281 +60549,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_break, anon_sym_continue, - [40277] = 4, + [41813] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2047), 2, - anon_sym_type, - sym_operator, - ACTIONS(2045), 34, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [40325] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 2, - anon_sym_type, - sym_operator, - ACTIONS(485), 34, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_with, - anon_sym_if, - anon_sym_then, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_RBRACK, - anon_sym_break, - anon_sym_continue, - [40373] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2035), 6, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2033), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40420] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2031), 6, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2029), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40467] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 6, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40514] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40563] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2043), 6, + ACTIONS(2047), 7, + anon_sym_COLON, anon_sym_type, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - ACTIONS(2041), 29, + ACTIONS(2045), 28, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -58321,7 +60584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_RPAREN, anon_sym_match, anon_sym_if, anon_sym_do, @@ -58332,20 +60594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [40610] = 4, + [41863] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2039), 6, + ACTIONS(2091), 6, anon_sym_type, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - ACTIONS(2037), 29, + ACTIONS(2089), 29, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -58375,20 +60637,455 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [40657] = 4, + [41910] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(2055), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2053), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [41957] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2069), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42004] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42051] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42098] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 7, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2021), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42145] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2013), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42192] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(1991), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42241] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_type, + sym_operator, + ACTIONS(343), 32, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_then, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42290] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(1997), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42339] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2065), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42386] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, ACTIONS(2047), 6, + anon_sym_COLON, anon_sym_type, - anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - ACTIONS(2045), 29, + ACTIONS(2045), 28, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -58407,7 +61104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_RPAREN, anon_sym_match, anon_sym_if, anon_sym_do, @@ -58418,64 +61114,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [40704] = 4, + [42435] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(347), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42484] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2027), 6, + ACTIONS(2023), 7, + anon_sym_COLON, anon_sym_type, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, - sym_operator, - ACTIONS(2025), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40751] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, sym_operator, - ACTIONS(2015), 29, + ACTIONS(2021), 28, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -58494,7 +61191,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_RPAREN, anon_sym_match, anon_sym_if, anon_sym_do, @@ -58505,1596 +61201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [40800] = 4, + [42531] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(487), 6, + ACTIONS(2083), 6, anon_sym_type, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - ACTIONS(485), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40847] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2039), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2037), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40893] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(485), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40939] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2039), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2037), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [40985] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2031), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2029), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41031] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2047), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2045), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41077] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41125] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2035), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2033), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41171] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(485), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41217] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41265] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2043), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2041), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41311] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2027), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2025), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41357] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41403] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2035), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2033), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41449] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41495] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2027), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2025), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41541] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2043), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2041), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41587] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2031), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2029), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41633] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2047), 5, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2045), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41679] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2031), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2029), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41724] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2035), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2033), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41769] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2039), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2037), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41814] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(485), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41859] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2043), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2041), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41904] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(485), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41949] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2027), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2025), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [41994] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2047), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2045), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42039] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2043), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2041), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42084] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2047), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2045), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42129] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42174] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2031), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2029), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42219] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 3, - anon_sym_type, - anon_sym_PIPE, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42266] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2035), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2033), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42311] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2027), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2025), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42356] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42401] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2039), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - ACTIONS(2037), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42446] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2039), 3, - anon_sym_type, - anon_sym_PIPE, - sym_operator, - ACTIONS(2037), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42490] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2043), 3, - anon_sym_type, - anon_sym_PIPE, - sym_operator, - ACTIONS(2041), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42534] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2031), 3, - anon_sym_type, - anon_sym_PIPE, - sym_operator, - ACTIONS(2029), 29, + ACTIONS(2081), 29, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -60130,11 +61250,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2027), 3, + ACTIONS(2079), 6, anon_sym_type, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, sym_operator, - ACTIONS(2025), 29, + ACTIONS(2077), 29, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -60164,17 +61287,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [42622] = 4, + [42625] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2035), 3, + ACTIONS(2051), 6, anon_sym_type, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, sym_operator, - ACTIONS(2033), 29, + ACTIONS(2049), 29, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -60204,17 +61330,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [42666] = 4, + [42672] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(487), 3, + ACTIONS(2059), 6, anon_sym_type, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, sym_operator, - ACTIONS(485), 29, + ACTIONS(2057), 29, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -60244,647 +61373,4578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [42710] = 4, + [42719] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42766] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2085), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42813] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2045), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42862] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(1997), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42911] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2063), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2061), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [42958] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(1991), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43007] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2013), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43054] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2073), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43101] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2057), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43147] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(455), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43195] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2045), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43243] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43289] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2065), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43335] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(369), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43383] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2085), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43429] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1997), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43477] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(1991), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43525] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + ACTIONS(2013), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43571] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + ACTIONS(2021), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43617] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43663] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2073), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43709] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2051), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2049), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43755] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2079), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2077), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43801] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2063), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2061), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43847] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2083), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2081), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43893] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2069), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43939] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2091), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2089), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [43985] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2055), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2053), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44031] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2055), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2053), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44077] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44123] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2091), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2089), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44169] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2083), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2081), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44215] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2063), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2061), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44261] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2045), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44309] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2079), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2077), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44355] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2057), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44401] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44447] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2051), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2049), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44493] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(1997), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44541] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2069), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44587] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2073), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44633] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2085), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44679] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(1991), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44727] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 5, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2065), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44773] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2013), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44819] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 6, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + ACTIONS(2021), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44865] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2079), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2077), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44910] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2091), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2089), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [44955] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2065), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45000] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2085), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45045] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2073), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45090] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2069), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45135] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2063), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2061), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45180] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2083), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2081), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45225] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1051), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(343), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45272] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2055), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2053), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45317] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(343), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45362] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2057), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45407] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2051), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + ACTIONS(2049), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45452] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 24, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [45497] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 24, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [45542] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 4, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2045), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45589] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 24, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [45634] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [45681] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [45728] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2051), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2049), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45773] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2079), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2077), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45818] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2063), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2061), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45863] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 4, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1997), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45910] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2083), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2081), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [45955] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(775), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46002] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2091), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2089), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46047] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46094] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2055), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2053), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46139] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 4, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(1991), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46186] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + ACTIONS(2013), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46231] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + ACTIONS(2021), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46276] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2057), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46321] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(343), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46366] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2069), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46411] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2073), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46456] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2085), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46501] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + ACTIONS(2065), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46546] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 5, + anon_sym_COLON, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + ACTIONS(2037), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46591] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2073), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46635] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2079), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2077), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46679] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2085), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46723] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2063), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2061), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46767] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2051), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2049), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46811] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2065), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46855] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2069), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46899] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2083), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2081), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [46943] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [46987] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47031] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47075] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47121] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47167] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47213] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47259] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2057), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47303] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2091), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2089), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47347] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47393] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47439] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47483] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47527] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47571] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(343), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47615] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2055), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(2053), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47659] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47703] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47747] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2051), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2049), 31, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42754] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 3, - anon_sym_type, - anon_sym_PIPE, - sym_operator, - ACTIONS(2015), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42798] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2047), 3, - anon_sym_type, - anon_sym_PIPE, - sym_operator, - ACTIONS(2045), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [42842] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [42885] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [42930] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [42975] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43020] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43063] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43108] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43151] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43194] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43237] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43280] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43323] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 23, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43366] = 5, - ACTIONS(3), 1, - sym__line_comment, ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43411] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2099), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(2097), 30, + ACTIONS(2093), 31, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -60904,7 +65964,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [47791] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47835] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47881] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [47927] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1375), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 3, + anon_sym_type, + anon_sym_PIPE, + sym_operator, + ACTIONS(343), 28, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_match, anon_sym_if, anon_sym_do, @@ -60915,25 +66139,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [43454] = 5, + [47973] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2101), 8, + ACTIONS(2045), 11, ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, + anon_sym_RBRACK, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2103), 22, + ACTIONS(2047), 20, anon_sym_namespace, + anon_sym_COLON, anon_sym_partition, anon_sym_use, anon_sym_import, @@ -60948,20 +66176,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [43499] = 4, + [48019] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2105), 8, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 21, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48062] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -60970,7 +66234,126 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2107), 23, + ACTIONS(2015), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48105] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48150] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48195] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 23, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -60994,23 +66377,145 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [43542] = 4, + [48238] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2109), 23, + ACTIONS(2023), 21, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48281] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 21, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48324] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48369] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 20, anon_sym_namespace, + anon_sym_COLON, anon_sym_partition, anon_sym_use, anon_sym_import, @@ -61024,24 +66529,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [43585] = 4, + [48412] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48455] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2113), 1, + ACTIONS(2101), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(2111), 30, + ACTIONS(2099), 30, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -61072,15 +66612,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [43628] = 5, + [48498] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, + ACTIONS(2103), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2015), 8, + ACTIONS(343), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -61089,7 +66629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 21, + ACTIONS(345), 22, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -61105,175 +66645,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43672] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43714] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43758] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43802] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48543] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48588] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48633] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2107), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2105), 30, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_match, anon_sym_if, anon_sym_do, anon_sym_while, anon_sym_for, anon_sym_loop, + anon_sym_SEMI, anon_sym_return, anon_sym_break, anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [43844] = 5, + [48676] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2101), 8, + ACTIONS(1997), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48721] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [48766] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -61282,8 +66866,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2103), 21, + ACTIONS(2039), 23, anon_sym_namespace, + anon_sym_COLON, anon_sym_partition, anon_sym_use, anon_sym_import, @@ -61300,255 +66885,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_elif, anon_sym_else, + anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [43888] = 22, + [48809] = 23, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(343), 1, anon_sym_RPAREN, + ACTIONS(2109), 1, + anon_sym_COLON, + ACTIONS(2111), 1, + anon_sym_LPAREN, ACTIONS(2115), 1, - anon_sym_LPAREN, - ACTIONS(2119), 1, sym_name_identifier, - ACTIONS(2123), 1, + ACTIONS(2119), 1, sym_float_number_literal, - ACTIONS(2125), 1, + ACTIONS(2121), 1, sym_number_literal, - ACTIONS(2127), 1, + ACTIONS(2123), 1, anon_sym_DQUOTE, - ACTIONS(2129), 1, + ACTIONS(2125), 1, anon_sym_SQUOTE, - STATE(1421), 1, - aux_sym_name_expression_repeat1, - STATE(1510), 1, + STATE(1515), 1, + sym_extended_name, + STATE(1588), 1, + sym_name_expression, + STATE(1603), 1, sym_type_subexpression, - STATE(1634), 1, + STATE(1626), 1, sym_subexpression_token, - STATE(1794), 1, + STATE(1971), 1, + aux_sym_name_expression_repeat1, + STATE(2311), 1, aux_sym_name_expression_repeat2, - STATE(2369), 1, + STATE(2511), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2117), 2, + ACTIONS(2113), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2121), 2, + ACTIONS(2117), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(694), 2, + STATE(828), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1543), 2, - sym_extended_name, - sym_literal, - STATE(1550), 2, + STATE(1652), 2, sym_string_literal, sym_char_literal, - STATE(1635), 2, + STATE(1655), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [43966] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44008] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(2115), 1, - anon_sym_LPAREN, - ACTIONS(2119), 1, - sym_name_identifier, - ACTIONS(2123), 1, - sym_float_number_literal, - ACTIONS(2125), 1, - sym_number_literal, - ACTIONS(2127), 1, - anon_sym_DQUOTE, - ACTIONS(2129), 1, - anon_sym_SQUOTE, - STATE(1421), 1, - aux_sym_name_expression_repeat1, - STATE(1510), 1, - sym_type_subexpression, - STATE(1634), 1, - sym_subexpression_token, - STATE(1794), 1, - aux_sym_name_expression_repeat2, - STATE(2369), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2117), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2121), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(699), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1543), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(1550), 2, - sym_string_literal, - sym_char_literal, - STATE(1635), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 5, + ACTIONS(345), 5, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [44086] = 4, + [48890] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44128] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44170] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2101), 8, + ACTIONS(1991), 9, ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2103), 21, + ACTIONS(1993), 21, anon_sym_namespace, + anon_sym_COLON, anon_sym_partition, anon_sym_use, anon_sym_import, @@ -61563,115 +66983,1061 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [44214] = 4, + [48935] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2021), 8, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2085), 20, - anon_sym_const, - anon_sym_var, + ACTIONS(2023), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, + anon_sym_elif, + anon_sym_else, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [44256] = 22, + [48978] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2131), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 11, + ts_builtin_sym_end, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49021] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 11, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49066] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49109] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49152] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49197] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 23, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49240] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49285] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49330] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49373] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49418] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49463] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49508] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49553] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49596] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49639] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49682] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49725] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49768] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49813] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49858] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 23, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49901] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [49946] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2135), 1, + anon_sym_COLON, ACTIONS(2137), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, sym_name_identifier, - ACTIONS(2143), 1, + ACTIONS(2145), 1, sym_float_number_literal, - ACTIONS(2146), 1, + ACTIONS(2147), 1, sym_number_literal, ACTIONS(2149), 1, anon_sym_DQUOTE, - ACTIONS(2152), 1, + ACTIONS(2151), 1, anon_sym_SQUOTE, - STATE(1421), 1, - aux_sym_name_expression_repeat1, - STATE(1510), 1, + STATE(1572), 1, + sym_extended_name, + STATE(1653), 1, + sym_name_expression, + STATE(1689), 1, sym_type_subexpression, - STATE(1634), 1, + STATE(1710), 1, sym_subexpression_token, - STATE(1794), 1, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, aux_sym_name_expression_repeat2, - STATE(2369), 1, + STATE(2516), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2134), 2, + ACTIONS(2139), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2140), 2, + ACTIONS(2143), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(699), 2, + STATE(903), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1543), 2, - sym_extended_name, - sym_literal, - STATE(1550), 2, + STATE(1759), 2, sym_string_literal, sym_char_literal, - STATE(1635), 2, + STATE(1758), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 5, - anon_sym_AMP, + sym_access_expression, + sym_literal, + ACTIONS(345), 4, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [44334] = 5, + [50026] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50068] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50110] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2057), 10, + ACTIONS(2045), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -61682,12 +68048,12 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 19, + ACTIONS(2047), 19, anon_sym_const, anon_sym_var, + anon_sym_COLON, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_match, anon_sym_if, @@ -61702,780 +68068,170 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [44378] = 4, + [50154] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2129), 8, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2019), 20, - anon_sym_const, - anon_sym_var, + ACTIONS(2131), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50198] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50240] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [44420] = 4, + [50284] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, + ACTIONS(1997), 8, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2081), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, + ACTIONS(1999), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [44462] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44504] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44548] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44592] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44636] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44680] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44724] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44766] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44808] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44850] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44892] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44934] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [44976] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45018] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 20, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45060] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45102] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45144] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45186] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45228] = 4, + [50328] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2157), 1, + ACTIONS(2155), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(2155), 29, + ACTIONS(2153), 29, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -62505,13 +68261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [45270] = 4, + [50370] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(485), 8, + ACTIONS(317), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -62520,240 +68276,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(487), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45312] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45356] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45400] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45444] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45488] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45532] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 22, + ACTIONS(2127), 22, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -62776,14 +68299,16 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [45574] = 4, + [50412] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, + ACTIONS(1991), 8, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -62791,9 +68316,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2075), 22, + ACTIONS(1993), 21, anon_sym_namespace, - anon_sym_partition, + anon_sym_COLON, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -62806,23 +68331,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [45616] = 5, + [50456] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2065), 8, + ACTIONS(2013), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -62831,7 +68353,85 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2067), 21, + ACTIONS(2015), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50498] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50540] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2157), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 21, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -62853,51 +68453,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [45660] = 4, + [50584] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45702] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, + ACTIONS(2037), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -62906,8 +68468,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2071), 22, + ACTIONS(2039), 22, anon_sym_namespace, + anon_sym_COLON, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -62920,7 +68483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, @@ -62929,581 +68491,7 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [45744] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45788] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45830] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45872] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45914] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45956] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [45998] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46042] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46084] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46126] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46168] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46212] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46254] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 22, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46296] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46340] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46382] = 4, + [50626] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(2161), 1, @@ -63541,46 +68529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [46424] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46468] = 4, + [50668] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(2165), 1, @@ -63618,52 +68567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [46510] = 4, + [50710] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, + ACTIONS(1995), 1, anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46552] = 4, - ACTIONS(3), 1, - sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, + ACTIONS(1997), 8, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -63671,123 +68584,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2109), 22, + ACTIONS(1999), 21, anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46594] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46636] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [46678] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 22, - anon_sym_namespace, - anon_sym_partition, + anon_sym_COLON, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -63802,13 +68601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [46720] = 4, + [50754] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(2169), 1, @@ -63846,7 +68644,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [46762] = 4, + [50796] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50840] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [50884] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(2173), 1, @@ -63884,91 +68760,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [46804] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2177), 1, - anon_sym_type, - ACTIONS(3), 2, + [50926] = 23, + ACTIONS(3), 1, sym__line_comment, - sym__block_comment, - ACTIONS(2175), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, + ACTIONS(343), 1, anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [46846] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2181), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2179), 29, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [46888] = 4, - ACTIONS(5), 1, - sym__doc_comment, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + sym_name_identifier, + ACTIONS(2183), 1, + sym_float_number_literal, ACTIONS(2185), 1, + sym_number_literal, + ACTIONS(2187), 1, + anon_sym_DQUOTE, + ACTIONS(2189), 1, + anon_sym_SQUOTE, + STATE(1578), 1, + sym_extended_name, + STATE(1642), 1, + sym_type_subexpression, + STATE(1649), 1, + sym_name_expression, + STATE(1763), 1, + sym_subexpression_token, + STATE(1966), 1, + aux_sym_name_expression_repeat1, + STATE(2293), 1, + aux_sym_name_expression_repeat2, + STATE(2539), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2177), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(959), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1700), 2, + sym_string_literal, + sym_char_literal, + STATE(1699), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 4, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [51006] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51048] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51090] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51132] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51176] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2193), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(2183), 29, + ACTIONS(2191), 29, ts_builtin_sym_end, anon_sym_namespace, anon_sym_const, @@ -63998,13 +69008,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [46930] = 4, + [51218] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2063), 8, + ACTIONS(1997), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -64013,8 +69025,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2019), 22, + ACTIONS(1999), 21, anon_sym_namespace, + anon_sym_COLON, anon_sym_partition, anon_sym_use, anon_sym_import, @@ -64028,99 +69041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, + anon_sym_elif, + anon_sym_else, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [46972] = 4, + [51262] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47014] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 22, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47056] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, + ACTIONS(2037), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -64131,7 +69064,241 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2103), 19, + ACTIONS(2039), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51304] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51346] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51390] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2195), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51434] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51478] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2197), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51522] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -64151,13 +69318,15 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47100] = 4, + [51566] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2053), 8, + ACTIONS(1991), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -64166,7 +69335,46 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2055), 22, + ACTIONS(1993), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51610] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2199), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -64181,21 +69389,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47142] = 4, + [51654] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2105), 8, + ACTIONS(2013), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -64204,8 +69411,125 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2107), 22, + ACTIONS(2015), 22, anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51696] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51738] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51782] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 21, + anon_sym_namespace, + anon_sym_COLON, anon_sym_partition, anon_sym_use, anon_sym_import, @@ -64220,22 +69544,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47184] = 5, + [51824] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 10, + ACTIONS(303), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -64246,7 +69566,1386 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 19, + ACTIONS(2097), 20, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51866] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51908] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51952] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 9, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [51994] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52036] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(2111), 1, + anon_sym_LPAREN, + ACTIONS(2115), 1, + sym_name_identifier, + ACTIONS(2119), 1, + sym_float_number_literal, + ACTIONS(2121), 1, + sym_number_literal, + ACTIONS(2123), 1, + anon_sym_DQUOTE, + ACTIONS(2125), 1, + anon_sym_SQUOTE, + STATE(1515), 1, + sym_extended_name, + STATE(1588), 1, + sym_name_expression, + STATE(1603), 1, + sym_type_subexpression, + STATE(1626), 1, + sym_subexpression_token, + STATE(1971), 1, + aux_sym_name_expression_repeat1, + STATE(2311), 1, + aux_sym_name_expression_repeat2, + STATE(2511), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2113), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2117), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(830), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1652), 2, + sym_string_literal, + sym_char_literal, + STATE(1655), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [52114] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 20, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52156] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + anon_sym_RPAREN, + ACTIONS(2201), 1, + anon_sym_LPAREN, + ACTIONS(2207), 1, + sym_name_identifier, + ACTIONS(2213), 1, + sym_float_number_literal, + ACTIONS(2216), 1, + sym_number_literal, + ACTIONS(2219), 1, + anon_sym_DQUOTE, + ACTIONS(2222), 1, + anon_sym_SQUOTE, + STATE(1515), 1, + sym_extended_name, + STATE(1588), 1, + sym_name_expression, + STATE(1603), 1, + sym_type_subexpression, + STATE(1626), 1, + sym_subexpression_token, + STATE(1971), 1, + aux_sym_name_expression_repeat1, + STATE(2311), 1, + aux_sym_name_expression_repeat2, + STATE(2511), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2204), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2210), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(830), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1652), 2, + sym_string_literal, + sym_char_literal, + STATE(1655), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [52234] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52278] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2225), 1, + anon_sym_COLON, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(2235), 1, + sym_float_number_literal, + ACTIONS(2237), 1, + sym_number_literal, + ACTIONS(2239), 1, + anon_sym_DQUOTE, + ACTIONS(2241), 1, + anon_sym_SQUOTE, + STATE(1594), 1, + sym_extended_name, + STATE(1621), 1, + sym_name_expression, + STATE(1644), 1, + sym_type_subexpression, + STATE(1745), 1, + sym_subexpression_token, + STATE(2003), 1, + aux_sym_name_expression_repeat1, + STATE(2223), 1, + aux_sym_name_expression_repeat2, + STATE(2476), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_AMP, + sym_operator, + ACTIONS(2229), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2233), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(948), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1702), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(343), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(1743), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [52358] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52402] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52446] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52490] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52532] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52574] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52616] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52658] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52702] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52744] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52786] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2243), 1, + anon_sym_COLON, + ACTIONS(2245), 1, + anon_sym_LPAREN, + ACTIONS(2249), 1, + sym_name_identifier, + ACTIONS(2253), 1, + sym_float_number_literal, + ACTIONS(2255), 1, + sym_number_literal, + ACTIONS(2257), 1, + anon_sym_DQUOTE, + ACTIONS(2259), 1, + anon_sym_SQUOTE, + STATE(1580), 1, + sym_extended_name, + STATE(1676), 1, + sym_name_expression, + STATE(1692), 1, + sym_type_subexpression, + STATE(1698), 1, + sym_subexpression_token, + STATE(1986), 1, + aux_sym_name_expression_repeat1, + STATE(2290), 1, + aux_sym_name_expression_repeat2, + STATE(2490), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2247), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2251), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(908), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1774), 2, + sym_string_literal, + sym_char_literal, + STATE(1773), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(345), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + [52866] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52908] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [52950] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2263), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2261), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [52992] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53036] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2267), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2265), 29, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [53078] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53122] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53166] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 22, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53208] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53250] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 20, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53292] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53336] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53380] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 22, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53422] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2269), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -64266,13 +70965,90 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47228] = 4, + [53466] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53510] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2087), 8, + ACTIONS(2037), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53552] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -64281,7 +71057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2089), 22, + ACTIONS(2059), 22, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -64296,6 +71072,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53594] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 22, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, @@ -64304,13 +71118,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47270] = 4, + [53636] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(313), 8, + ACTIONS(2065), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -64319,7 +71133,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2081), 22, + ACTIONS(2067), 22, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -64334,21 +71148,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53678] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53722] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47312] = 4, + [53764] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 8, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 22, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53806] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -64357,7 +71286,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2079), 22, + ACTIONS(2087), 22, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -64372,15 +71301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47354] = 4, + [53848] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -64410,15 +71339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47396] = 4, + [53890] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -64448,19 +71377,914 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53932] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [53976] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47438] = 5, + [54017] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54058] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54099] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54142] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54183] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54224] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54265] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54306] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54349] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54390] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2271), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54433] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54476] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54517] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54560] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54603] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54644] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54685] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54726] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54767] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54808] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54851] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54892] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [54933] = 4, + ACTIONS(3), 1, + sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -64495,3156 +72319,68 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [47482] = 5, + [54974] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47526] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47570] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47614] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47658] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47702] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47745] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47786] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2187), 1, - anon_sym_LPAREN, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, - sym_float_number_literal, - ACTIONS(2197), 1, - sym_number_literal, - ACTIONS(2199), 1, - anon_sym_DQUOTE, - ACTIONS(2201), 1, - anon_sym_SQUOTE, - STATE(1416), 1, - aux_sym_name_expression_repeat1, - STATE(1664), 1, - sym_type_subexpression, - STATE(1668), 1, - sym_subexpression_token, - STATE(1670), 1, - aux_sym_name_expression_repeat2, - STATE(2363), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 2, - anon_sym_AMP, - sym_operator, - ACTIONS(2189), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2193), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(784), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - STATE(1642), 2, - sym_extended_name, - sym_literal, - STATE(1780), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, + ACTIONS(411), 1, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [47863] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47904] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [47945] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2187), 1, - anon_sym_LPAREN, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, - sym_float_number_literal, - ACTIONS(2197), 1, - sym_number_literal, - ACTIONS(2199), 1, - anon_sym_DQUOTE, - ACTIONS(2201), 1, - anon_sym_SQUOTE, - STATE(1416), 1, - aux_sym_name_expression_repeat1, - STATE(1664), 1, - sym_type_subexpression, - STATE(1668), 1, - sym_subexpression_token, - STATE(1670), 1, - aux_sym_name_expression_repeat2, - STATE(2363), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(511), 2, - anon_sym_AMP, - sym_operator, - ACTIONS(2189), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2193), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(786), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - STATE(1642), 2, - sym_extended_name, - sym_literal, - STATE(1780), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [48022] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48063] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2203), 1, - anon_sym_LPAREN, - ACTIONS(2209), 1, - sym_name_identifier, - ACTIONS(2215), 1, - sym_float_number_literal, - ACTIONS(2218), 1, - sym_number_literal, - ACTIONS(2221), 1, - anon_sym_DQUOTE, - ACTIONS(2224), 1, - anon_sym_SQUOTE, - STATE(1416), 1, - aux_sym_name_expression_repeat1, - STATE(1664), 1, - sym_type_subexpression, - STATE(1668), 1, - sym_subexpression_token, - STATE(1670), 1, - aux_sym_name_expression_repeat2, - STATE(2363), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(387), 2, - anon_sym_AMP, - sym_operator, - ACTIONS(2206), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2212), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(786), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - STATE(1642), 2, - sym_extended_name, - sym_literal, - STATE(1780), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [48140] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48181] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48224] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2227), 1, - anon_sym_LPAREN, - ACTIONS(2233), 1, - sym_name_identifier, - ACTIONS(2239), 1, - sym_float_number_literal, - ACTIONS(2242), 1, - sym_number_literal, - ACTIONS(2245), 1, - anon_sym_DQUOTE, - ACTIONS(2248), 1, - anon_sym_SQUOTE, - STATE(1426), 1, - aux_sym_name_expression_repeat1, - STATE(1585), 1, - sym_type_subexpression, - STATE(1758), 1, - sym_subexpression_token, - STATE(1808), 1, - aux_sym_name_expression_repeat2, - STATE(2333), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2230), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2236), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(789), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1576), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - STATE(1736), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 4, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [48301] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48342] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48383] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48424] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48465] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48506] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(2251), 1, - anon_sym_LPAREN, - ACTIONS(2255), 1, - sym_name_identifier, - ACTIONS(2259), 1, - sym_float_number_literal, - ACTIONS(2261), 1, - sym_number_literal, - ACTIONS(2263), 1, - anon_sym_DQUOTE, - ACTIONS(2265), 1, - anon_sym_SQUOTE, - STATE(1426), 1, - aux_sym_name_expression_repeat1, - STATE(1585), 1, - sym_type_subexpression, - STATE(1758), 1, - sym_subexpression_token, - STATE(1808), 1, - aux_sym_name_expression_repeat2, - STATE(2333), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2253), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2257), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(789), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1576), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - STATE(1736), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 4, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [48583] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48624] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RPAREN, - ACTIONS(2251), 1, - anon_sym_LPAREN, - ACTIONS(2255), 1, - sym_name_identifier, - ACTIONS(2259), 1, - sym_float_number_literal, - ACTIONS(2261), 1, - sym_number_literal, - ACTIONS(2263), 1, - anon_sym_DQUOTE, - ACTIONS(2265), 1, - anon_sym_SQUOTE, - STATE(1426), 1, - aux_sym_name_expression_repeat1, - STATE(1585), 1, - sym_type_subexpression, - STATE(1758), 1, - sym_subexpression_token, - STATE(1808), 1, - aux_sym_name_expression_repeat2, - STATE(2333), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2253), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2257), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(795), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1576), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - STATE(1736), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 4, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_operator, - [48701] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48742] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48783] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48824] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48865] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48906] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48947] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [48988] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49031] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49072] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49113] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49156] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49199] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49240] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49283] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49326] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49369] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49410] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49453] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49494] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49535] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49576] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49619] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49660] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49703] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49746] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49789] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49832] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49875] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49918] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [49961] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50002] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50043] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50086] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50129] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50170] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50213] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50254] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50297] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50338] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50379] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50420] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50461] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50502] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50543] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50586] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50629] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50672] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50715] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2267), 1, - anon_sym_LPAREN, ACTIONS(2273), 1, - sym_name_identifier, + anon_sym_LPAREN, ACTIONS(2279), 1, - sym_float_number_literal, - ACTIONS(2282), 1, - sym_number_literal, + sym_name_identifier, ACTIONS(2285), 1, - anon_sym_DQUOTE, + sym_float_number_literal, ACTIONS(2288), 1, + sym_number_literal, + ACTIONS(2291), 1, + anon_sym_DQUOTE, + ACTIONS(2294), 1, anon_sym_SQUOTE, - STATE(1406), 1, - aux_sym_name_expression_repeat1, - STATE(1633), 1, + STATE(1572), 1, + sym_extended_name, + STATE(1653), 1, + sym_name_expression, + STATE(1689), 1, sym_type_subexpression, - STATE(1667), 1, + STATE(1710), 1, sym_subexpression_token, - STATE(1747), 1, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, aux_sym_name_expression_repeat2, - STATE(2364), 1, + STATE(2516), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2270), 2, - anon_sym_TILDE, - anon_sym_AT, ACTIONS(2276), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2282), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(846), 2, + STATE(894), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1590), 2, + STATE(1759), 2, sym_string_literal, sym_char_literal, - STATE(1644), 2, - sym_extended_name, - sym_literal, - STATE(1831), 2, + STATE(1758), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [50792] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50835] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50878] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50921] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [50962] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51005] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51046] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(2291), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - sym_name_identifier, - ACTIONS(2299), 1, - sym_float_number_literal, - ACTIONS(2301), 1, - sym_number_literal, - ACTIONS(2303), 1, - anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_SQUOTE, - STATE(1406), 1, - aux_sym_name_expression_repeat1, - STATE(1633), 1, - sym_type_subexpression, - STATE(1667), 1, - sym_subexpression_token, - STATE(1747), 1, - aux_sym_name_expression_repeat2, - STATE(2364), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2293), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2297), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(846), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1590), 2, - sym_string_literal, - sym_char_literal, - STATE(1644), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(1831), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 4, - anon_sym_AMP, + ACTIONS(413), 4, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [51123] = 4, + [55051] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 8, + ACTIONS(317), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -67653,7 +72389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2079), 21, + ACTIONS(2127), 21, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -67675,179 +72411,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [51164] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RPAREN, - ACTIONS(2291), 1, - anon_sym_LPAREN, - ACTIONS(2295), 1, - sym_name_identifier, - ACTIONS(2299), 1, - sym_float_number_literal, - ACTIONS(2301), 1, - sym_number_literal, - ACTIONS(2303), 1, - anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_SQUOTE, - STATE(1406), 1, - aux_sym_name_expression_repeat1, - STATE(1633), 1, - sym_type_subexpression, - STATE(1667), 1, - sym_subexpression_token, - STATE(1747), 1, - aux_sym_name_expression_repeat2, - STATE(2364), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2293), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2297), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(853), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1590), 2, - sym_string_literal, - sym_char_literal, - STATE(1644), 2, - sym_extended_name, - sym_literal, - STATE(1831), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [51241] = 4, + [55092] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51282] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51323] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51364] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, + ACTIONS(2085), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -67856,7 +72426,44 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 21, + ACTIONS(2087), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55133] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -67878,51 +72485,15 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [51405] = 5, + [55174] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(2133), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51448] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, + ACTIONS(2129), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -67931,7 +72502,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2071), 21, + ACTIONS(2131), 20, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -67946,14 +72517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [51489] = 4, + [55217] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -67983,6 +72553,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55258] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, anon_sym_elif, anon_sym_else, anon_sym_DOT, @@ -67990,51 +72597,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [51530] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51573] = 4, + [55299] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 8, + ACTIONS(2069), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -68043,566 +72612,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2079), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51614] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51657] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51700] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51741] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51782] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51823] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51866] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51907] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51950] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [51991] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 19, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52032] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 19, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52073] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 19, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52114] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 19, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52155] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 19, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52196] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 21, + ACTIONS(2071), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -68624,68 +72634,183 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [52237] = 22, + [55340] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 19, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55381] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, anon_sym_RPAREN, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - ACTIONS(2307), 1, + ACTIONS(2137), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, + ACTIONS(2141), 1, sym_name_identifier, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1596), 1, + ACTIONS(2145), 1, + sym_float_number_literal, + ACTIONS(2147), 1, + sym_number_literal, + ACTIONS(2149), 1, + anon_sym_DQUOTE, + ACTIONS(2151), 1, + anon_sym_SQUOTE, + STATE(1572), 1, + sym_extended_name, + STATE(1653), 1, + sym_name_expression, + STATE(1689), 1, sym_type_subexpression, - STATE(1666), 1, + STATE(1710), 1, sym_subexpression_token, - STATE(1838), 1, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, aux_sym_name_expression_repeat2, - STATE(2379), 1, + STATE(2516), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2309), 2, + ACTIONS(2139), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2313), 2, + ACTIONS(2143), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(885), 2, + STATE(894), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1631), 2, + STATE(1759), 2, sym_string_literal, sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(1806), 2, + STATE(1758), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 4, + sym_access_expression, + sym_literal, + ACTIONS(409), 4, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [52314] = 4, + [55458] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(2297), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 10, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55501] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55544] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2299), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -68696,14 +72821,14 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2085), 19, + ACTIONS(345), 18, anon_sym_const, anon_sym_var, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, anon_sym_match, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_do, anon_sym_while, anon_sym_for, @@ -68711,184 +72836,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [52355] = 4, + [55587] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, + ACTIONS(2037), 8, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2107), 19, - anon_sym_const, - anon_sym_var, + ACTIONS(2039), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [52396] = 4, + [55628] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52437] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52478] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, + ACTIONS(407), 1, anon_sym_RPAREN, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - ACTIONS(2307), 1, + ACTIONS(2245), 1, anon_sym_LPAREN, - ACTIONS(2311), 1, + ACTIONS(2249), 1, sym_name_identifier, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1596), 1, + ACTIONS(2253), 1, + sym_float_number_literal, + ACTIONS(2255), 1, + sym_number_literal, + ACTIONS(2257), 1, + anon_sym_DQUOTE, + ACTIONS(2259), 1, + anon_sym_SQUOTE, + STATE(1580), 1, + sym_extended_name, + STATE(1676), 1, + sym_name_expression, + STATE(1692), 1, sym_type_subexpression, - STATE(1666), 1, + STATE(1698), 1, sym_subexpression_token, - STATE(1838), 1, + STATE(1986), 1, + aux_sym_name_expression_repeat1, + STATE(2290), 1, aux_sym_name_expression_repeat2, - STATE(2379), 1, + STATE(2490), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2309), 2, + ACTIONS(2247), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2313), 2, + ACTIONS(2251), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(892), 2, + STATE(916), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1631), 2, + STATE(1774), 2, sym_string_literal, sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(1806), 2, + STATE(1773), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 4, + sym_access_expression, + sym_literal, + ACTIONS(409), 4, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, - [52555] = 4, + [55705] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(2301), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2063), 8, + ACTIONS(343), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -68897,7 +72949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2019), 21, + ACTIONS(345), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -68912,20 +72964,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [52596] = 4, + [55748] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2087), 8, + ACTIONS(303), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -68934,7 +72985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2089), 21, + ACTIONS(2097), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -68949,96 +73000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52637] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 19, - anon_sym_const, - anon_sym_var, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [52678] = 4, + [55789] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 19, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52719] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, + ACTIONS(2065), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -69047,7 +73022,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 20, + ACTIONS(2067), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -69063,2776 +73038,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_elif, + anon_sym_else, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [52762] = 4, + [55830] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, + ACTIONS(2021), 8, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2085), 19, - anon_sym_const, - anon_sym_var, + ACTIONS(2023), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [52803] = 22, + [55871] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55912] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55955] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [55998] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, anon_sym_RPAREN, + ACTIONS(2303), 1, + anon_sym_LPAREN, + ACTIONS(2309), 1, + sym_name_identifier, ACTIONS(2315), 1, - anon_sym_LPAREN, - ACTIONS(2321), 1, - sym_name_identifier, - ACTIONS(2327), 1, sym_float_number_literal, - ACTIONS(2330), 1, + ACTIONS(2318), 1, sym_number_literal, - ACTIONS(2333), 1, + ACTIONS(2321), 1, anon_sym_DQUOTE, - ACTIONS(2336), 1, + ACTIONS(2324), 1, anon_sym_SQUOTE, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1596), 1, + STATE(1580), 1, + sym_extended_name, + STATE(1676), 1, + sym_name_expression, + STATE(1692), 1, sym_type_subexpression, - STATE(1666), 1, + STATE(1698), 1, sym_subexpression_token, - STATE(1838), 1, + STATE(1986), 1, + aux_sym_name_expression_repeat1, + STATE(2290), 1, aux_sym_name_expression_repeat2, - STATE(2379), 1, + STATE(2490), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2318), 2, + ACTIONS(2306), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2324), 2, + ACTIONS(2312), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(892), 2, + STATE(916), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1631), 2, + STATE(1774), 2, sym_string_literal, sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(1806), 2, + STATE(1773), 3, sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 4, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - [52880] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52921] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 19, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [52962] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53005] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53046] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53089] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53132] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53173] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53214] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53257] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53298] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53339] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53380] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53423] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53464] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53505] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53546] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53587] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53628] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53671] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53712] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53753] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53794] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53835] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53876] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53917] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53958] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [53999] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 21, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54040] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54081] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54124] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54165] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54206] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54249] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54292] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54333] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54376] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54417] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54458] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54499] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54540] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54581] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54624] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54667] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54708] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 19, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54749] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54792] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54835] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 21, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54876] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54919] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [54962] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55005] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55048] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55088] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1403), 1, - sym_float_number_literal, - ACTIONS(1405), 1, - sym_number_literal, - ACTIONS(1407), 1, - anon_sym_DQUOTE, - ACTIONS(1409), 1, - anon_sym_SQUOTE, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2345), 1, - sym_name_identifier, - STATE(533), 1, - sym_name_expression, - STATE(645), 1, - sym_scoped_statement, - STATE(1411), 1, - aux_sym_name_expression_repeat1, - STATE(1472), 1, - sym_subexpression, - STATE(1774), 1, - aux_sym_name_expression_repeat2, - STATE(2217), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2341), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(895), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(913), 2, - sym_string_literal, - sym_char_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [55164] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, - sym_float_number_literal, - ACTIONS(2197), 1, - sym_number_literal, - ACTIONS(2199), 1, - anon_sym_DQUOTE, - ACTIONS(2201), 1, - anon_sym_SQUOTE, - ACTIONS(2347), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_LBRACK, - STATE(596), 1, - sym_scoped_statement, - STATE(781), 1, - sym_name_expression, - STATE(1416), 1, - aux_sym_name_expression_repeat1, - STATE(1670), 1, - aux_sym_name_expression_repeat2, - STATE(2203), 1, - aux_sym_reference_expression_repeat1, - STATE(2427), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2349), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - STATE(1642), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [55240] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55280] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55320] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55360] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55402] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55442] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_LPAREN, - ACTIONS(2357), 1, - sym_name_identifier, - ACTIONS(2359), 1, - sym_float_number_literal, - ACTIONS(2361), 1, - sym_number_literal, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(2365), 1, - anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1286), 1, - sym_name_expression, - STATE(1460), 1, - aux_sym_name_expression_repeat1, - STATE(1705), 1, - aux_sym_name_expression_repeat2, - STATE(2185), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2355), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1861), 2, - sym_extended_name, - sym_literal, - STATE(1872), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [55518] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55558] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55598] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55640] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55680] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55720] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(629), 1, - anon_sym_LPAREN, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - ACTIONS(2367), 1, - sym_name_identifier, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1310), 1, - sym_name_expression, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(2216), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(631), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [55796] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55836] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55876] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_const, - anon_sym_var, + ACTIONS(413), 4, anon_sym_AMP, anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55916] = 5, + [56075] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2065), 8, + ACTIONS(2085), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -71841,7 +73264,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2067), 19, + ACTIONS(2087), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -71856,139 +73279,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [55958] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(935), 1, - anon_sym_LPAREN, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - ACTIONS(2369), 1, - sym_name_identifier, - STATE(551), 1, - sym_name_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(650), 1, - sym_subexpression, - STATE(1445), 1, - aux_sym_name_expression_repeat1, - STATE(1798), 1, - aux_sym_name_expression_repeat2, - STATE(2237), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(937), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1049), 2, - sym_extended_name, - sym_literal, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [56034] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, + anon_sym_AMP, anon_sym_elif, anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56074] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, [56116] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56157] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -72003,7 +73338,44 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2071), 20, + ACTIONS(2071), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56198] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -72019,18 +73391,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_QMARK, + anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [56156] = 4, + [56239] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56282] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(485), 10, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56323] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56366] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56407] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56448] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56491] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56534] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56575] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -72041,11 +73714,12 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(487), 18, + ACTIONS(2075), 19, anon_sym_const, anon_sym_var, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_match, anon_sym_if, @@ -72060,13 +73734,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [56196] = 4, + [56616] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2069), 8, + ACTIONS(2057), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -72075,273 +73749,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2071), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56236] = 18, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(2373), 1, - anon_sym_RBRACE, - ACTIONS(2375), 1, - anon_sym_match, - ACTIONS(2377), 1, - anon_sym_if, - ACTIONS(2379), 1, - anon_sym_do, - ACTIONS(2381), 1, - anon_sym_while, - ACTIONS(2383), 1, - anon_sym_for, - ACTIONS(2385), 1, - anon_sym_loop, - ACTIONS(2387), 1, - anon_sym_SEMI, - ACTIONS(2389), 1, - anon_sym_return, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2371), 2, - anon_sym_const, - anon_sym_var, - ACTIONS(2391), 2, - anon_sym_break, - anon_sym_continue, - STATE(1125), 2, - sym_block_statement, - aux_sym_block_repeat1, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(1910), 3, - sym_variable_definition_statement, - sym_flow_control, - sym_prefixed_expression, - STATE(758), 6, - sym_match, - sym_condition, - sym_do_while_loop, - sym_while_loop, - sym_for_loop, - sym_loop_loop, - [56304] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56344] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56384] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56424] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56464] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56504] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 20, + ACTIONS(2059), 21, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -72357,229 +73765,5231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56544] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [56586] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_QMARK, anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [56626] = 22, - ACTIONS(5), 1, + [56657] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, sym__doc_comment, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, anon_sym_LPAREN, - ACTIONS(709), 1, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, anon_sym_DQUOTE, + ACTIONS(345), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56698] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, ACTIONS(715), 1, - anon_sym_SQUOTE, - ACTIONS(2393), 1, sym_name_identifier, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2425), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [56702] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(2327), 1, anon_sym_LPAREN, - ACTIONS(2399), 1, - sym_name_identifier, - ACTIONS(2401), 1, + ACTIONS(2333), 1, sym_float_number_literal, - ACTIONS(2403), 1, + ACTIONS(2335), 1, sym_number_literal, - ACTIONS(2405), 1, + ACTIONS(2337), 1, anon_sym_DQUOTE, - ACTIONS(2407), 1, + ACTIONS(2339), 1, anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1273), 1, - sym_name_expression, - STATE(1450), 1, - aux_sym_name_expression_repeat1, - STATE(1727), 1, - aux_sym_name_expression_repeat2, - STATE(2209), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(1617), 1, + sym_extended_name, + STATE(1711), 1, sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, + STATE(1771), 1, + sym_name_expression, + STATE(1785), 1, + sym_subexpression_token, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2500), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2397), 2, + ACTIONS(2329), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1894), 2, - sym_extended_name, - sym_literal, - STATE(1931), 2, + ACTIONS(2331), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1118), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1800), 2, sym_string_literal, sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [56778] = 4, + ACTIONS(345), 3, + anon_sym_elif, + anon_sym_else, + sym_operator, + STATE(1787), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [56777] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2107), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, + ACTIONS(2097), 19, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, [56818] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56859] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56900] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 21, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56941] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [56982] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57023] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2341), 1, + anon_sym_COLON, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(2351), 1, + sym_float_number_literal, + ACTIONS(2353), 1, + sym_number_literal, + ACTIONS(2355), 1, + anon_sym_DQUOTE, + ACTIONS(2357), 1, + anon_sym_SQUOTE, + STATE(1661), 1, + sym_extended_name, + STATE(1722), 1, + sym_name_expression, + STATE(1728), 1, + sym_type_subexpression, + STATE(1849), 1, + sym_subexpression_token, + STATE(1987), 1, + aux_sym_name_expression_repeat1, + STATE(2283), 1, + aux_sym_name_expression_repeat2, + STATE(2522), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2349), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1045), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1838), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(345), 3, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + STATE(1837), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [57102] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57143] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57186] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57227] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57268] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57309] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57352] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57395] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57436] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2227), 1, + anon_sym_LPAREN, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(2235), 1, + sym_float_number_literal, + ACTIONS(2237), 1, + sym_number_literal, + ACTIONS(2239), 1, + anon_sym_DQUOTE, + ACTIONS(2241), 1, + anon_sym_SQUOTE, + STATE(1594), 1, + sym_extended_name, + STATE(1621), 1, + sym_name_expression, + STATE(1644), 1, + sym_type_subexpression, + STATE(1745), 1, + sym_subexpression_token, + STATE(2003), 1, + aux_sym_name_expression_repeat1, + STATE(2223), 1, + aux_sym_name_expression_repeat2, + STATE(2476), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(409), 2, + anon_sym_AMP, + sym_operator, + ACTIONS(2229), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2233), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(952), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1702), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(407), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(1743), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [57513] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57556] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57599] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2359), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57642] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2361), 1, + anon_sym_LPAREN, + ACTIONS(2367), 1, + sym_name_identifier, + ACTIONS(2373), 1, + sym_float_number_literal, + ACTIONS(2376), 1, + sym_number_literal, + ACTIONS(2379), 1, + anon_sym_DQUOTE, + ACTIONS(2382), 1, + anon_sym_SQUOTE, + STATE(1594), 1, + sym_extended_name, + STATE(1621), 1, + sym_name_expression, + STATE(1644), 1, + sym_type_subexpression, + STATE(1745), 1, + sym_subexpression_token, + STATE(2003), 1, + aux_sym_name_expression_repeat1, + STATE(2223), 1, + aux_sym_name_expression_repeat2, + STATE(2476), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(413), 2, + anon_sym_AMP, + sym_operator, + ACTIONS(2364), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2370), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(952), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1702), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(1743), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [57719] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57760] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57801] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [57844] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(345), 1, + sym_operator, + ACTIONS(2385), 1, + anon_sym_COLON, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2391), 1, + sym_name_identifier, + ACTIONS(2395), 1, + sym_float_number_literal, + ACTIONS(2397), 1, + sym_number_literal, + ACTIONS(2399), 1, + anon_sym_DQUOTE, + ACTIONS(2401), 1, + anon_sym_SQUOTE, + STATE(1680), 1, + sym_extended_name, + STATE(1714), 1, + sym_name_expression, + STATE(1715), 1, + sym_type_subexpression, + STATE(1853), 1, + sym_subexpression_token, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2389), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2393), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1138), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1780), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(343), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(1779), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [57923] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + anon_sym_RPAREN, + ACTIONS(2403), 1, + anon_sym_LPAREN, + ACTIONS(2409), 1, + sym_name_identifier, + ACTIONS(2415), 1, + sym_float_number_literal, + ACTIONS(2418), 1, + sym_number_literal, + ACTIONS(2421), 1, + anon_sym_DQUOTE, + ACTIONS(2424), 1, + anon_sym_SQUOTE, + STATE(1578), 1, + sym_extended_name, + STATE(1642), 1, + sym_type_subexpression, + STATE(1649), 1, + sym_name_expression, + STATE(1763), 1, + sym_subexpression_token, + STATE(1966), 1, + aux_sym_name_expression_repeat1, + STATE(2293), 1, + aux_sym_name_expression_repeat2, + STATE(2539), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2406), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2412), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(957), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1700), 2, + sym_string_literal, + sym_char_literal, + STATE(1699), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(413), 4, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [58000] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58041] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(2175), 1, + anon_sym_LPAREN, + ACTIONS(2179), 1, + sym_name_identifier, + ACTIONS(2183), 1, + sym_float_number_literal, + ACTIONS(2185), 1, + sym_number_literal, + ACTIONS(2187), 1, + anon_sym_DQUOTE, + ACTIONS(2189), 1, + anon_sym_SQUOTE, + STATE(1578), 1, + sym_extended_name, + STATE(1642), 1, + sym_type_subexpression, + STATE(1649), 1, + sym_name_expression, + STATE(1763), 1, + sym_subexpression_token, + STATE(1966), 1, + aux_sym_name_expression_repeat1, + STATE(2293), 1, + aux_sym_name_expression_repeat2, + STATE(2539), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2177), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2181), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(957), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1700), 2, + sym_string_literal, + sym_char_literal, + STATE(1699), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + ACTIONS(409), 4, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_operator, + [58118] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58159] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58200] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 19, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58241] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2427), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58284] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58325] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58366] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58409] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58452] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58495] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58538] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2429), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58581] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58622] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58663] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58706] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58747] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58788] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58829] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58870] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58911] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58952] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2431), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [58995] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2433), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59038] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59081] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59122] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 19, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59163] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 21, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59204] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59247] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2441), 1, + sym_name_identifier, + ACTIONS(2445), 1, + sym_float_number_literal, + ACTIONS(2447), 1, + sym_number_literal, + ACTIONS(2449), 1, + anon_sym_DQUOTE, + ACTIONS(2451), 1, + anon_sym_SQUOTE, + STATE(1691), 1, + sym_extended_name, + STATE(1706), 1, + sym_type_subexpression, + STATE(1750), 1, + sym_name_expression, + STATE(1822), 1, + sym_subexpression_token, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2509), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2439), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2443), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1027), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1843), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(345), 3, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + STATE(1844), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [59326] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 21, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59367] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2453), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59409] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(2455), 1, + sym_name_identifier, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(2583), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [59483] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(2457), 1, + sym_name_identifier, + STATE(539), 1, + sym_name_expression, + STATE(594), 1, + sym_subexpression, + STATE(1298), 1, + sym_extended_name, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2350), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(267), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [59557] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2459), 1, + anon_sym_LPAREN, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_name_identifier, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + STATE(524), 1, + sym_name_expression, + STATE(996), 1, + sym_extended_name, + STATE(1632), 1, + sym_subexpression, + STATE(1999), 1, + aux_sym_name_expression_repeat1, + STATE(2257), 1, + aux_sym_name_expression_repeat2, + STATE(2360), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2461), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [59631] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2479), 1, + sym_name_identifier, + STATE(575), 1, + sym_subexpression, + STATE(1164), 1, + sym_name_expression, + STATE(1721), 1, + sym_extended_name, + STATE(1942), 1, + aux_sym_name_expression_repeat1, + STATE(2194), 1, + aux_sym_name_expression_repeat2, + STATE(2359), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2477), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [59705] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(735), 1, + anon_sym_LPAREN, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(2481), 1, + sym_name_identifier, + STATE(500), 1, + sym_name_expression, + STATE(688), 1, + sym_subexpression, + STATE(973), 1, + sym_extended_name, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2327), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(737), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [59779] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2487), 1, + sym_name_identifier, + STATE(575), 1, + sym_subexpression, + STATE(1181), 1, + sym_name_expression, + STATE(1753), 1, + sym_extended_name, + STATE(2015), 1, + aux_sym_name_expression_repeat1, + STATE(2183), 1, + aux_sym_name_expression_repeat2, + STATE(2358), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [59853] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [59895] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + STATE(939), 1, + sym_name_expression, + STATE(1661), 1, + sym_extended_name, + STATE(1987), 1, + aux_sym_name_expression_repeat1, + STATE(2283), 1, + aux_sym_name_expression_repeat2, + STATE(2357), 1, + aux_sym_reference_expression_repeat1, + STATE(2531), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2491), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(677), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [59969] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2507), 1, + sym_name_identifier, + STATE(1128), 1, + sym_name_expression, + STATE(1708), 1, + sym_extended_name, + STATE(1947), 1, + aux_sym_name_expression_repeat1, + STATE(2205), 1, + aux_sym_name_expression_repeat2, + STATE(2381), 1, + aux_sym_reference_expression_repeat1, + STATE(2590), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2505), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60043] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60083] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60123] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2509), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + sym_name_identifier, + STATE(495), 1, + sym_name_expression, + STATE(737), 1, + sym_extended_name, + STATE(1587), 1, + sym_subexpression, + STATE(1951), 1, + aux_sym_name_expression_repeat1, + STATE(2264), 1, + aux_sym_name_expression_repeat2, + STATE(2388), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2511), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60197] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1167), 1, + anon_sym_LPAREN, + ACTIONS(2441), 1, + sym_name_identifier, + STATE(688), 1, + sym_subexpression, + STATE(987), 1, + sym_name_expression, + STATE(1691), 1, + sym_extended_name, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2329), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1169), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60271] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(625), 1, + anon_sym_LPAREN, + ACTIONS(2515), 1, + sym_name_identifier, + STATE(594), 1, + sym_subexpression, + STATE(1207), 1, + sym_name_expression, + STATE(1839), 1, + sym_extended_name, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2352), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(627), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60345] = 18, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2520), 1, + anon_sym_LBRACE, + ACTIONS(2523), 1, + anon_sym_RBRACE, + ACTIONS(2525), 1, + anon_sym_match, + ACTIONS(2528), 1, + anon_sym_if, + ACTIONS(2531), 1, + anon_sym_do, + ACTIONS(2534), 1, + anon_sym_while, + ACTIONS(2537), 1, + anon_sym_for, + ACTIONS(2540), 1, + anon_sym_loop, + ACTIONS(2543), 1, + anon_sym_SEMI, + ACTIONS(2546), 1, + anon_sym_return, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2517), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(2549), 2, + anon_sym_break, + anon_sym_continue, + STATE(1004), 2, + sym_block_statement, + aux_sym_block_repeat1, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(1821), 3, + sym_variable_definition_statement, + sym_flow_control, + sym_prefixed_expression, + STATE(848), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [60413] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60453] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(191), 1, + anon_sym_LPAREN, + ACTIONS(2552), 1, + sym_name_identifier, + STATE(543), 1, + sym_name_expression, + STATE(594), 1, + sym_subexpression, + STATE(1239), 1, + sym_extended_name, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2332), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(207), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60527] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60569] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + ACTIONS(2554), 1, + anon_sym_LPAREN, + ACTIONS(2558), 1, + sym_name_identifier, + STATE(498), 1, + sym_name_expression, + STATE(668), 1, + sym_subexpression, + STATE(950), 1, + sym_extended_name, + STATE(1985), 1, + aux_sym_name_expression_repeat1, + STATE(2292), 1, + aux_sym_name_expression_repeat2, + STATE(2335), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2556), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(677), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60643] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60683] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60723] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60763] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [60803] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(949), 1, + anon_sym_LPAREN, + ACTIONS(2560), 1, + sym_name_identifier, + STATE(272), 1, + sym_name_expression, + STATE(656), 1, + sym_subexpression, + STATE(787), 1, + sym_extended_name, + STATE(1949), 1, + aux_sym_name_expression_repeat1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2334), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(951), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60877] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2562), 1, + anon_sym_LPAREN, + ACTIONS(2566), 1, + sym_name_identifier, + STATE(575), 1, + sym_subexpression, + STATE(1106), 1, + sym_name_expression, + STATE(1749), 1, + sym_extended_name, + STATE(1968), 1, + aux_sym_name_expression_repeat1, + STATE(2303), 1, + aux_sym_name_expression_repeat2, + STATE(2397), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2564), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [60951] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + anon_sym_RPAREN, + ACTIONS(2568), 1, + anon_sym_LPAREN, + ACTIONS(2574), 1, + sym_name_identifier, + ACTIONS(2580), 1, + sym_float_number_literal, + ACTIONS(2583), 1, + sym_number_literal, + ACTIONS(2586), 1, + anon_sym_DQUOTE, + ACTIONS(2589), 1, + anon_sym_SQUOTE, + STATE(1661), 1, + sym_extended_name, + STATE(1722), 1, + sym_name_expression, + STATE(1728), 1, + sym_type_subexpression, + STATE(1849), 1, + sym_subexpression_token, + STATE(1987), 1, + aux_sym_name_expression_repeat1, + STATE(2283), 1, + aux_sym_name_expression_repeat2, + STATE(2522), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2571), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2577), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1015), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1838), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(413), 3, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + STATE(1837), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [61027] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2475), 1, + anon_sym_LPAREN, + ACTIONS(2479), 1, + sym_name_identifier, + STATE(1164), 1, + sym_name_expression, + STATE(1721), 1, + sym_extended_name, + STATE(1942), 1, + aux_sym_name_expression_repeat1, + STATE(2194), 1, + aux_sym_name_expression_repeat2, + STATE(2359), 1, + aux_sym_reference_expression_repeat1, + STATE(2576), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2477), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61101] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61141] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61181] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2592), 1, + anon_sym_LPAREN, + ACTIONS(2596), 1, + sym_name_identifier, + STATE(516), 1, + sym_name_expression, + STATE(1103), 1, + sym_extended_name, + STATE(1623), 1, + sym_subexpression, + STATE(2017), 1, + aux_sym_name_expression_repeat1, + STATE(2224), 1, + aux_sym_name_expression_repeat2, + STATE(2328), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2594), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61255] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 17, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61297] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(667), 1, + anon_sym_LPAREN, + ACTIONS(2598), 1, + sym_name_identifier, + STATE(594), 1, + sym_subexpression, + STATE(1240), 1, + sym_name_expression, + STATE(1817), 1, + sym_extended_name, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2356), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(669), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61371] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2503), 1, + anon_sym_LPAREN, + ACTIONS(2507), 1, + sym_name_identifier, + STATE(575), 1, + sym_subexpression, + STATE(1128), 1, + sym_name_expression, + STATE(1708), 1, + sym_extended_name, + STATE(1947), 1, + aux_sym_name_expression_repeat1, + STATE(2205), 1, + aux_sym_name_expression_repeat2, + STATE(2381), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2505), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61445] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(1139), 1, + anon_sym_LPAREN, + ACTIONS(2600), 1, + sym_name_identifier, + STATE(499), 1, + sym_name_expression, + STATE(688), 1, + sym_subexpression, + STATE(926), 1, + sym_extended_name, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2340), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1141), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61519] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2509), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + sym_name_identifier, + STATE(495), 1, + sym_name_expression, + STATE(575), 1, + sym_subexpression, + STATE(737), 1, + sym_extended_name, + STATE(1951), 1, + aux_sym_name_expression_repeat1, + STATE(2264), 1, + aux_sym_name_expression_repeat2, + STATE(2388), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2511), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61593] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61633] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2602), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61675] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(2437), 1, + anon_sym_LPAREN, + ACTIONS(2441), 1, + sym_name_identifier, + ACTIONS(2445), 1, + sym_float_number_literal, + ACTIONS(2447), 1, + sym_number_literal, + ACTIONS(2449), 1, + anon_sym_DQUOTE, + ACTIONS(2451), 1, + anon_sym_SQUOTE, + STATE(1691), 1, + sym_extended_name, + STATE(1706), 1, + sym_type_subexpression, + STATE(1750), 1, + sym_name_expression, + STATE(1822), 1, + sym_subexpression_token, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2509), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2439), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2443), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1033), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1843), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(409), 3, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + STATE(1844), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [61751] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61793] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [61833] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(639), 1, + anon_sym_LPAREN, + ACTIONS(2604), 1, + sym_name_identifier, + STATE(265), 1, + sym_name_expression, + STATE(594), 1, + sym_subexpression, + STATE(807), 1, + sym_extended_name, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2336), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(641), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61907] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(745), 1, + anon_sym_LBRACK, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(2606), 1, + sym_name_identifier, + STATE(271), 1, + sym_name_expression, + STATE(688), 1, + sym_subexpression, + STATE(750), 1, + sym_extended_name, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2400), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(979), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(695), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [61981] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(2608), 1, + sym_name_identifier, + STATE(528), 1, + sym_name_expression, + STATE(707), 1, + sym_subexpression, + STATE(1036), 1, + sym_extended_name, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62055] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + anon_sym_RPAREN, + ACTIONS(2610), 1, + anon_sym_LPAREN, + ACTIONS(2616), 1, + sym_name_identifier, + ACTIONS(2622), 1, + sym_float_number_literal, + ACTIONS(2625), 1, + sym_number_literal, + ACTIONS(2628), 1, + anon_sym_DQUOTE, + ACTIONS(2631), 1, + anon_sym_SQUOTE, + STATE(1691), 1, + sym_extended_name, + STATE(1706), 1, + sym_type_subexpression, + STATE(1750), 1, + sym_name_expression, + STATE(1822), 1, + sym_subexpression_token, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2509), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2613), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2619), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1033), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1843), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(413), 3, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + STATE(1844), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [62131] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62171] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2459), 1, + anon_sym_LPAREN, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_name_identifier, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + STATE(524), 1, + sym_name_expression, + STATE(575), 1, + sym_subexpression, + STATE(996), 1, + sym_extended_name, + STATE(1999), 1, + aux_sym_name_expression_repeat1, + STATE(2257), 1, + aux_sym_name_expression_repeat2, + STATE(2360), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2461), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62245] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62287] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2249), 1, + sym_name_identifier, + ACTIONS(2634), 1, + anon_sym_LPAREN, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + STATE(843), 1, + sym_name_expression, + STATE(1580), 1, + sym_extended_name, + STATE(1986), 1, + aux_sym_name_expression_repeat1, + STATE(2290), 1, + aux_sym_name_expression_repeat2, + STATE(2346), 1, + aux_sym_reference_expression_repeat1, + STATE(2446), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2636), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62361] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62401] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62441] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2648), 1, + anon_sym_LPAREN, + ACTIONS(2652), 1, + sym_name_identifier, + STATE(182), 1, + sym_name_expression, + STATE(769), 1, + sym_extended_name, + STATE(1488), 1, + sym_subexpression, + STATE(1960), 1, + aux_sym_name_expression_repeat1, + STATE(2260), 1, + aux_sym_name_expression_repeat2, + STATE(2333), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2650), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62515] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62555] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2483), 1, + anon_sym_LPAREN, + ACTIONS(2487), 1, + sym_name_identifier, + STATE(1181), 1, + sym_name_expression, + STATE(1753), 1, + sym_extended_name, + STATE(2015), 1, + aux_sym_name_expression_repeat1, + STATE(2183), 1, + aux_sym_name_expression_repeat2, + STATE(2358), 1, + aux_sym_reference_expression_repeat1, + STATE(2556), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2485), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62629] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [62669] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(2654), 1, + sym_name_identifier, + STATE(503), 1, + sym_name_expression, + STATE(707), 1, + sym_subexpression, + STATE(812), 1, + sym_extended_name, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62743] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(2343), 1, + anon_sym_LPAREN, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(2351), 1, + sym_float_number_literal, + ACTIONS(2353), 1, + sym_number_literal, + ACTIONS(2355), 1, + anon_sym_DQUOTE, + ACTIONS(2357), 1, + anon_sym_SQUOTE, + STATE(1661), 1, + sym_extended_name, + STATE(1722), 1, + sym_name_expression, + STATE(1728), 1, + sym_type_subexpression, + STATE(1849), 1, + sym_subexpression_token, + STATE(1987), 1, + aux_sym_name_expression_repeat1, + STATE(2283), 1, + aux_sym_name_expression_repeat2, + STATE(2522), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2349), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1015), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1838), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(409), 3, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + STATE(1837), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [62819] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2648), 1, + anon_sym_LPAREN, + ACTIONS(2652), 1, + sym_name_identifier, + STATE(182), 1, + sym_name_expression, + STATE(575), 1, + sym_subexpression, + STATE(769), 1, + sym_extended_name, + STATE(1960), 1, + aux_sym_name_expression_repeat1, + STATE(2260), 1, + aux_sym_name_expression_repeat2, + STATE(2333), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2650), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62893] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(885), 1, + anon_sym_LPAREN, + ACTIONS(2656), 1, + sym_name_identifier, + STATE(594), 1, + sym_subexpression, + STATE(1244), 1, + sym_name_expression, + STATE(1831), 1, + sym_extended_name, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2361), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(887), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [62967] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63007] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63049] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2658), 1, + anon_sym_LPAREN, + ACTIONS(2662), 1, + anon_sym_LBRACK, + ACTIONS(2664), 1, + sym_name_identifier, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + STATE(178), 1, + sym_name_expression, + STATE(619), 1, + sym_subexpression, + STATE(694), 1, + sym_extended_name, + STATE(1969), 1, + aux_sym_name_expression_repeat1, + STATE(2304), 1, + aux_sym_name_expression_repeat2, + STATE(2363), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2660), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63123] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63163] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -72609,21 +79019,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, + anon_sym_elif, + anon_sym_else, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [56858] = 5, + [63203] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(2133), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2057), 8, + ACTIONS(2129), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -72632,7 +79042,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 19, + ACTIONS(2131), 19, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -72652,68 +79062,1191 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [56900] = 22, + [63245] = 21, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(57), 1, anon_sym_LBRACK, - ACTIONS(2409), 1, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, anon_sym_LPAREN, - ACTIONS(2413), 1, + ACTIONS(2674), 1, sym_name_identifier, - STATE(552), 1, + STATE(533), 1, sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1430), 1, - aux_sym_name_expression_repeat1, - STATE(1542), 1, + STATE(594), 1, sym_subexpression, - STATE(1783), 1, + STATE(751), 1, + sym_extended_name, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, aux_sym_name_expression_repeat2, - STATE(2205), 1, + STATE(2367), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(2411), 2, + ACTIONS(237), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1051), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(599), 5, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [56976] = 5, + [63319] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(2133), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63361] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + ACTIONS(2676), 1, + anon_sym_LPAREN, + ACTIONS(2680), 1, + sym_name_identifier, + STATE(508), 1, + sym_name_expression, + STATE(668), 1, + sym_subexpression, + STATE(878), 1, + sym_extended_name, + STATE(1994), 1, + aux_sym_name_expression_repeat1, + STATE(2268), 1, + aux_sym_name_expression_repeat2, + STATE(2379), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2678), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(677), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63435] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(2682), 1, + anon_sym_LPAREN, + ACTIONS(2686), 1, + sym_name_identifier, + STATE(187), 1, + sym_name_expression, + STATE(723), 1, + sym_extended_name, + STATE(1494), 1, + sym_subexpression, + STATE(1976), 1, + aux_sym_name_expression_repeat1, + STATE(2320), 1, + aux_sym_name_expression_repeat2, + STATE(2410), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2684), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63509] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + ACTIONS(2554), 1, + anon_sym_LPAREN, + ACTIONS(2558), 1, + sym_name_identifier, + STATE(498), 1, + sym_name_expression, + STATE(950), 1, + sym_extended_name, + STATE(1568), 1, + sym_subexpression, + STATE(1985), 1, + aux_sym_name_expression_repeat1, + STATE(2292), 1, + aux_sym_name_expression_repeat2, + STATE(2335), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2556), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(677), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63583] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(1153), 1, + anon_sym_LPAREN, + ACTIONS(2608), 1, + sym_name_identifier, + STATE(528), 1, + sym_name_expression, + STATE(1036), 1, + sym_extended_name, + STATE(1611), 1, + sym_subexpression, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2362), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1155), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63657] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2459), 1, + anon_sym_LPAREN, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2465), 1, + sym_name_identifier, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + STATE(524), 1, + sym_name_expression, + STATE(996), 1, + sym_extended_name, + STATE(1628), 1, + sym_subexpression, + STATE(1999), 1, + aux_sym_name_expression_repeat1, + STATE(2257), 1, + aux_sym_name_expression_repeat2, + STATE(2360), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2461), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63731] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(413), 1, + sym_operator, + ACTIONS(2688), 1, + anon_sym_LPAREN, + ACTIONS(2694), 1, + sym_name_identifier, + ACTIONS(2700), 1, + sym_float_number_literal, + ACTIONS(2703), 1, + sym_number_literal, + ACTIONS(2706), 1, + anon_sym_DQUOTE, + ACTIONS(2709), 1, + anon_sym_SQUOTE, + STATE(1680), 1, + sym_extended_name, + STATE(1714), 1, + sym_name_expression, + STATE(1715), 1, + sym_type_subexpression, + STATE(1853), 1, + sym_subexpression_token, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2691), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2697), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1061), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1780), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(411), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + STATE(1779), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [63807] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [63849] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(935), 1, + anon_sym_LPAREN, + ACTIONS(2141), 1, + sym_name_identifier, + STATE(656), 1, + sym_subexpression, + STATE(781), 1, + sym_name_expression, + STATE(1572), 1, + sym_extended_name, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, + aux_sym_name_expression_repeat2, + STATE(2377), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(937), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63923] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + ACTIONS(2712), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + sym_name_identifier, + STATE(343), 1, + sym_name_expression, + STATE(768), 1, + sym_extended_name, + STATE(1505), 1, + sym_subexpression, + STATE(1980), 1, + aux_sym_name_expression_repeat1, + STATE(2176), 1, + aux_sym_name_expression_repeat2, + STATE(2386), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2714), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(677), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [63997] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(681), 1, + anon_sym_LPAREN, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(2718), 1, + sym_name_identifier, + STATE(519), 1, + sym_name_expression, + STATE(707), 1, + sym_subexpression, + STATE(1178), 1, + sym_extended_name, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(683), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [64071] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64113] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2592), 1, + anon_sym_LPAREN, + ACTIONS(2596), 1, + sym_name_identifier, + STATE(516), 1, + sym_name_expression, + STATE(575), 1, + sym_subexpression, + STATE(1103), 1, + sym_extended_name, + STATE(2017), 1, + aux_sym_name_expression_repeat1, + STATE(2224), 1, + aux_sym_name_expression_repeat2, + STATE(2328), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2594), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [64187] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64227] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64269] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2562), 1, + anon_sym_LPAREN, + ACTIONS(2566), 1, + sym_name_identifier, + STATE(1106), 1, + sym_name_expression, + STATE(1749), 1, + sym_extended_name, + STATE(1968), 1, + aux_sym_name_expression_repeat1, + STATE(2303), 1, + aux_sym_name_expression_repeat2, + STATE(2397), 1, + aux_sym_reference_expression_repeat1, + STATE(2591), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2564), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [64343] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(2720), 1, + sym_name_identifier, + STATE(181), 1, + sym_name_expression, + STATE(656), 1, + sym_subexpression, + STATE(717), 1, + sym_extended_name, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2351), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(901), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [64417] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(1125), 1, + anon_sym_LPAREN, + ACTIONS(2722), 1, + sym_name_identifier, + STATE(491), 1, + sym_name_expression, + STATE(594), 1, + sym_subexpression, + STATE(955), 1, + sym_extended_name, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2343), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1127), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [64491] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64531] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(2724), 1, + anon_sym_LPAREN, + ACTIONS(2728), 1, + sym_name_identifier, + STATE(356), 1, + sym_name_expression, + STATE(831), 1, + sym_extended_name, + STATE(1534), 1, + sym_subexpression, + STATE(1940), 1, + aux_sym_name_expression_repeat1, + STATE(2270), 1, + aux_sym_name_expression_repeat2, + STATE(2368), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2726), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [64605] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2730), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64647] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64689] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2732), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_name_identifier, + STATE(277), 1, + sym_name_expression, + STATE(833), 1, + sym_extended_name, + STATE(1520), 1, + sym_subexpression, + STATE(1964), 1, + aux_sym_name_expression_repeat1, + STATE(2282), 1, + aux_sym_name_expression_repeat2, + STATE(2349), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2734), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [64763] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64803] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, ACTIONS(2057), 8, anon_sym_RBRACE, anon_sym_LPAREN, @@ -72723,7 +80256,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 19, + ACTIONS(2059), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -72737,19 +80270,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64843] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [64883] = 23, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2455), 1, + sym_name_identifier, + ACTIONS(2738), 1, + anon_sym_COLON, + ACTIONS(2740), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, + sym_float_number_literal, + ACTIONS(2748), 1, + sym_number_literal, + ACTIONS(2750), 1, + anon_sym_DQUOTE, + ACTIONS(2752), 1, + anon_sym_SQUOTE, + STATE(1761), 1, + sym_extended_name, + STATE(1784), 1, + sym_name_expression, + STATE(1830), 1, + sym_type_subexpression, + STATE(1868), 1, + sym_subexpression_token, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2491), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_PIPE, + sym_operator, + ACTIONS(2742), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2744), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1211), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1902), 2, + sym_string_literal, + sym_char_literal, + STATE(1900), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [64961] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 18, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65001] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + sym_name_identifier, + STATE(594), 1, + sym_subexpression, + STATE(1257), 1, + sym_name_expression, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2364), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(613), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [65075] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_elif, anon_sym_else, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [57018] = 4, + [65115] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2063), 8, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65155] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2756), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65197] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65237] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65277] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2249), 1, + sym_name_identifier, + ACTIONS(2634), 1, + anon_sym_LPAREN, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + STATE(644), 1, + sym_subexpression, + STATE(843), 1, + sym_name_expression, + STATE(1580), 1, + sym_extended_name, + STATE(1986), 1, + aux_sym_name_expression_repeat1, + STATE(2290), 1, + aux_sym_name_expression_repeat2, + STATE(2346), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2636), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [65351] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -72758,7 +80706,938 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2019), 20, + ACTIONS(2127), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65391] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65431] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65471] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65511] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65551] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65591] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65631] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65671] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65711] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65751] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65793] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65833] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65875] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65917] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [65957] = 18, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(2760), 1, + anon_sym_RBRACE, + ACTIONS(2762), 1, + anon_sym_match, + ACTIONS(2764), 1, + anon_sym_if, + ACTIONS(2766), 1, + anon_sym_do, + ACTIONS(2768), 1, + anon_sym_while, + ACTIONS(2770), 1, + anon_sym_for, + ACTIONS(2772), 1, + anon_sym_loop, + ACTIONS(2774), 1, + anon_sym_SEMI, + ACTIONS(2776), 1, + anon_sym_return, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2758), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(2778), 2, + anon_sym_break, + anon_sym_continue, + STATE(1004), 2, + sym_block_statement, + aux_sym_block_repeat1, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(1821), 3, + sym_variable_definition_statement, + sym_flow_control, + sym_prefixed_expression, + STATE(848), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [66025] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(2780), 1, + anon_sym_LPAREN, + ACTIONS(2784), 1, + sym_name_identifier, + ACTIONS(2788), 1, + sym_float_number_literal, + ACTIONS(2790), 1, + sym_number_literal, + ACTIONS(2792), 1, + anon_sym_DQUOTE, + ACTIONS(2794), 1, + anon_sym_SQUOTE, + STATE(1749), 1, + sym_extended_name, + STATE(1795), 1, + sym_type_subexpression, + STATE(1807), 1, + sym_name_expression, + STATE(1897), 1, + sym_subexpression_token, + STATE(1968), 1, + aux_sym_name_expression_repeat1, + STATE(2303), 1, + aux_sym_name_expression_repeat2, + STATE(2533), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2782), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2786), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1250), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1889), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(345), 3, + anon_sym_AMP, + anon_sym_with, + sym_operator, + STATE(1888), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [66101] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2732), 1, + anon_sym_LPAREN, + ACTIONS(2736), 1, + sym_name_identifier, + STATE(277), 1, + sym_name_expression, + STATE(575), 1, + sym_subexpression, + STATE(833), 1, + sym_extended_name, + STATE(1964), 1, + aux_sym_name_expression_repeat1, + STATE(2282), 1, + aux_sym_name_expression_repeat2, + STATE(2349), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2734), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [66175] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(681), 1, + anon_sym_LPAREN, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(2718), 1, + sym_name_identifier, + STATE(519), 1, + sym_name_expression, + STATE(1178), 1, + sym_extended_name, + STATE(1665), 1, + sym_subexpression, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2339), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(683), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [66249] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2592), 1, + anon_sym_LPAREN, + ACTIONS(2596), 1, + sym_name_identifier, + STATE(516), 1, + sym_name_expression, + STATE(1103), 1, + sym_extended_name, + STATE(1666), 1, + sym_subexpression, + STATE(2017), 1, + aux_sym_name_expression_repeat1, + STATE(2224), 1, + aux_sym_name_expression_repeat2, + STATE(2328), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2594), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [66323] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2662), 1, + anon_sym_LBRACK, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + ACTIONS(2796), 1, + anon_sym_LPAREN, + ACTIONS(2800), 1, + sym_name_identifier, + STATE(186), 1, + sym_name_expression, + STATE(619), 1, + sym_subexpression, + STATE(745), 1, + sym_extended_name, + STATE(1970), 1, + aux_sym_name_expression_repeat1, + STATE(2308), 1, + aux_sym_name_expression_repeat2, + STATE(2378), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2798), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [66397] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66437] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 18, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66477] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -72779,50 +81658,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [57058] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [57100] = 4, + [66517] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 8, + ACTIONS(2057), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -72831,7 +81673,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2085), 20, + ACTIONS(2059), 20, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -72847,20 +81689,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66557] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [57140] = 5, + [66597] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2101), 8, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66637] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -72869,7 +81781,345 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2103), 19, + ACTIONS(2127), 20, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66677] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(715), 1, + sym_name_identifier, + ACTIONS(2327), 1, + anon_sym_LPAREN, + ACTIONS(2333), 1, + sym_float_number_literal, + ACTIONS(2335), 1, + sym_number_literal, + ACTIONS(2337), 1, + anon_sym_DQUOTE, + ACTIONS(2339), 1, + anon_sym_SQUOTE, + STATE(1617), 1, + sym_extended_name, + STATE(1711), 1, + sym_type_subexpression, + STATE(1771), 1, + sym_name_expression, + STATE(1785), 1, + sym_subexpression_token, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2500), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2329), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2331), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1162), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1800), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(409), 3, + anon_sym_elif, + anon_sym_else, + sym_operator, + STATE(1787), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [66753] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [66793] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(863), 1, + anon_sym_LPAREN, + ACTIONS(873), 1, + anon_sym_LBRACK, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(2802), 1, + sym_name_identifier, + STATE(269), 1, + sym_name_expression, + STATE(656), 1, + sym_subexpression, + STATE(855), 1, + sym_extended_name, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2370), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(865), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(649), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [66867] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(2724), 1, + anon_sym_LPAREN, + ACTIONS(2728), 1, + sym_name_identifier, + STATE(356), 1, + sym_name_expression, + STATE(644), 1, + sym_subexpression, + STATE(831), 1, + sym_extended_name, + STATE(1940), 1, + aux_sym_name_expression_repeat1, + STATE(2270), 1, + aux_sym_name_expression_repeat2, + STATE(2368), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2726), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [66941] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + sym_name_identifier, + STATE(349), 1, + sym_name_expression, + STATE(784), 1, + sym_extended_name, + STATE(1531), 1, + sym_subexpression, + STATE(1983), 1, + aux_sym_name_expression_repeat1, + STATE(2297), 1, + aux_sym_name_expression_repeat2, + STATE(2372), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2806), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67015] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(849), 1, + anon_sym_LPAREN, + ACTIONS(2455), 1, + sym_name_identifier, + STATE(707), 1, + sym_subexpression, + STATE(1081), 1, + sym_name_expression, + STATE(1761), 1, + sym_extended_name, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2341), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(851), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67089] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -72885,17 +82135,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_elif, anon_sym_else, + anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [57182] = 4, + [67129] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LPAREN, + STATE(575), 1, + sym_subexpression, + STATE(832), 1, + sym_name_expression, + STATE(1594), 1, + sym_extended_name, + STATE(2003), 1, + aux_sym_name_expression_repeat1, + STATE(2223), 1, + aux_sym_name_expression_repeat2, + STATE(2345), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2812), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67203] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67245] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(705), 1, + anon_sym_LPAREN, + ACTIONS(2814), 1, + sym_name_identifier, + STATE(594), 1, + sym_subexpression, + STATE(932), 1, + sym_name_expression, + STATE(1617), 1, + sym_extended_name, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2347), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(707), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67319] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2820), 1, + sym_name_identifier, + ACTIONS(2824), 1, + sym_float_number_literal, + ACTIONS(2826), 1, + sym_number_literal, + ACTIONS(2828), 1, + anon_sym_DQUOTE, + ACTIONS(2830), 1, + anon_sym_SQUOTE, + STATE(1708), 1, + sym_extended_name, + STATE(1775), 1, + sym_name_expression, + STATE(1808), 1, + sym_type_subexpression, + STATE(1890), 1, + sym_subexpression_token, + STATE(1947), 1, + aux_sym_name_expression_repeat1, + STATE(2205), 1, + aux_sym_name_expression_repeat2, + STATE(2518), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2818), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2822), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1262), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1867), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(345), 3, + anon_sym_AMP, + anon_sym_do, + sym_operator, + STATE(1866), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [67395] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 8, + ACTIONS(2073), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -72904,7 +82352,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2079), 20, + ACTIONS(2075), 20, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -72919,19 +82367,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [57222] = 4, + [67435] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(313), 8, + ACTIONS(2085), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -72940,7 +82388,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2081), 20, + ACTIONS(2087), 20, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -72955,13 +82403,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [57262] = 22, + [67475] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2832), 1, + anon_sym_LPAREN, + ACTIONS(2836), 1, + sym_name_identifier, + STATE(803), 1, + sym_name_expression, + STATE(1578), 1, + sym_extended_name, + STATE(1966), 1, + aux_sym_name_expression_repeat1, + STATE(2293), 1, + aux_sym_name_expression_repeat2, + STATE(2353), 1, + aux_sym_reference_expression_repeat1, + STATE(2424), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2834), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67549] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, + anon_sym_LPAREN, + STATE(832), 1, + sym_name_expression, + STATE(1594), 1, + sym_extended_name, + STATE(2003), 1, + aux_sym_name_expression_repeat1, + STATE(2223), 1, + aux_sym_name_expression_repeat2, + STATE(2345), 1, + aux_sym_reference_expression_repeat1, + STATE(2448), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2812), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67623] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2838), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [67665] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2832), 1, + anon_sym_LPAREN, + ACTIONS(2836), 1, + sym_name_identifier, + STATE(575), 1, + sym_subexpression, + STATE(803), 1, + sym_name_expression, + STATE(1578), 1, + sym_extended_name, + STATE(1966), 1, + aux_sym_name_expression_repeat1, + STATE(2293), 1, + aux_sym_name_expression_repeat2, + STATE(2353), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2834), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67739] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2115), 1, + sym_name_identifier, + ACTIONS(2662), 1, + anon_sym_LBRACK, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + ACTIONS(2840), 1, + anon_sym_LPAREN, + STATE(619), 1, + sym_subexpression, + STATE(756), 1, + sym_name_expression, + STATE(1515), 1, + sym_extended_name, + STATE(1971), 1, + aux_sym_name_expression_repeat1, + STATE(2311), 1, + aux_sym_name_expression_repeat2, + STATE(2391), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2842), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67813] = 21, ACTIONS(5), 1, sym__doc_comment, ACTIONS(33), 1, @@ -72976,23 +82673,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(2415), 1, + ACTIONS(2391), 1, sym_name_identifier, - STATE(607), 1, + STATE(594), 1, sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(993), 1, + STATE(956), 1, sym_name_expression, - STATE(1403), 1, + STATE(1680), 1, + sym_extended_name, + STATE(1982), 1, aux_sym_name_expression_repeat1, - STATE(1724), 1, + STATE(2256), 1, aux_sym_name_expression_repeat2, - STATE(2210), 1, + STATE(2376), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -73000,24 +82695,27 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(49), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(592), 2, sym_string_literal, sym_char_literal, - STATE(610), 5, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [57338] = 22, - ACTIONS(3), 1, - sym__line_comment, + [67887] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(57), 1, + anon_sym_LBRACK, ACTIONS(67), 1, sym_float_number_literal, ACTIONS(69), 1, @@ -73026,996 +82724,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(73), 1, anon_sym_SQUOTE, - ACTIONS(487), 1, - sym_operator, - ACTIONS(2415), 1, - sym_name_identifier, - ACTIONS(2417), 1, + ACTIONS(653), 1, anon_sym_LPAREN, - STATE(1403), 1, + ACTIONS(2844), 1, + sym_name_identifier, + STATE(509), 1, + sym_name_expression, + STATE(594), 1, + sym_subexpression, + STATE(914), 1, + sym_extended_name, + STATE(1974), 1, aux_sym_name_expression_repeat1, - STATE(1720), 1, - sym_type_subexpression, - STATE(1724), 1, + STATE(2318), 1, aux_sym_name_expression_repeat2, - STATE(1898), 1, - sym_subexpression_token, - STATE(2375), 1, + STATE(2385), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(655), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(597), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [67961] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(409), 1, + sym_operator, + ACTIONS(2387), 1, + anon_sym_LPAREN, + ACTIONS(2391), 1, + sym_name_identifier, + ACTIONS(2395), 1, + sym_float_number_literal, + ACTIONS(2397), 1, + sym_number_literal, + ACTIONS(2399), 1, + anon_sym_DQUOTE, + ACTIONS(2401), 1, + anon_sym_SQUOTE, + STATE(1680), 1, + sym_extended_name, + STATE(1714), 1, + sym_name_expression, + STATE(1715), 1, + sym_type_subexpression, + STATE(1853), 1, + sym_subexpression_token, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2419), 2, + ACTIONS(2389), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2421), 2, + ACTIONS(2393), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1150), 2, + STATE(1061), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(1780), 2, sym_string_literal, sym_char_literal, - STATE(1888), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(485), 3, + ACTIONS(407), 3, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACK, - [57414] = 22, + STATE(1779), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [68037] = 21, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(1005), 1, - sym_float_number_literal, - ACTIONS(1007), 1, - sym_number_literal, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - ACTIONS(1011), 1, - anon_sym_SQUOTE, - ACTIONS(2423), 1, + ACTIONS(2658), 1, anon_sym_LPAREN, - ACTIONS(2427), 1, + ACTIONS(2662), 1, anon_sym_LBRACK, - ACTIONS(2429), 1, + ACTIONS(2664), 1, sym_name_identifier, - STATE(383), 1, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + STATE(178), 1, sym_name_expression, - STATE(623), 1, - sym_scoped_statement, - STATE(1390), 1, + STATE(694), 1, + sym_extended_name, + STATE(1462), 1, sym_subexpression, - STATE(1410), 1, + STATE(1969), 1, aux_sym_name_expression_repeat1, - STATE(1765), 1, + STATE(2304), 1, aux_sym_name_expression_repeat2, - STATE(2200), 1, + STATE(2363), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(2425), 2, + ACTIONS(2660), 2, anon_sym_TILDE, anon_sym_AT, - STATE(723), 2, - sym_extended_name, - sym_literal, - STATE(738), 2, + STATE(621), 2, sym_string_literal, sym_char_literal, - STATE(615), 5, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [57490] = 22, + [68111] = 21, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(1285), 1, - sym_float_number_literal, - ACTIONS(1287), 1, - sym_number_literal, - ACTIONS(1289), 1, - anon_sym_DQUOTE, - ACTIONS(1291), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, + ACTIONS(2463), 1, anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2435), 1, - sym_name_identifier, - STATE(523), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1417), 1, - aux_sym_name_expression_repeat1, - STATE(1494), 1, - sym_subexpression, - STATE(1789), 1, - aux_sym_name_expression_repeat2, - STATE(2244), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2433), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(825), 2, - sym_extended_name, - sym_literal, - STATE(857), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [57566] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, + ACTIONS(2467), 1, sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, + ACTIONS(2469), 1, sym_number_literal, - anon_sym_SQUOTE, - [57608] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [57648] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, - sym_float_number_literal, - ACTIONS(2197), 1, - sym_number_literal, - ACTIONS(2199), 1, - anon_sym_DQUOTE, - ACTIONS(2201), 1, - anon_sym_SQUOTE, - ACTIONS(2347), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_LBRACK, - STATE(596), 1, - sym_scoped_statement, - STATE(781), 1, - sym_name_expression, - STATE(1416), 1, - aux_sym_name_expression_repeat1, - STATE(1670), 1, - aux_sym_name_expression_repeat2, - STATE(2203), 1, - aux_sym_reference_expression_repeat1, - STATE(2283), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2349), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - STATE(1642), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [57724] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [57766] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [57806] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [57846] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(965), 1, - sym_float_number_literal, - ACTIONS(967), 1, - sym_number_literal, - ACTIONS(969), 1, - anon_sym_DQUOTE, - ACTIONS(971), 1, - anon_sym_SQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2443), 1, - sym_name_identifier, - STATE(366), 1, - sym_name_expression, - STATE(631), 1, - sym_scoped_statement, - STATE(639), 1, - sym_subexpression, - STATE(1413), 1, - aux_sym_name_expression_repeat1, - STATE(1781), 1, - aux_sym_name_expression_repeat2, - STATE(2229), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2439), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(704), 2, - sym_extended_name, - sym_literal, - STATE(713), 2, - sym_string_literal, - sym_char_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [57922] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1403), 1, - sym_float_number_literal, - ACTIONS(1405), 1, - sym_number_literal, - ACTIONS(1407), 1, - anon_sym_DQUOTE, - ACTIONS(1409), 1, - anon_sym_SQUOTE, - ACTIONS(2339), 1, - anon_sym_LPAREN, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2345), 1, - sym_name_identifier, - STATE(533), 1, - sym_name_expression, - STATE(645), 1, - sym_scoped_statement, - STATE(646), 1, - sym_subexpression, - STATE(1411), 1, - aux_sym_name_expression_repeat1, - STATE(1774), 1, - aux_sym_name_expression_repeat2, - STATE(2217), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2341), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(895), 2, - sym_extended_name, - sym_literal, - STATE(913), 2, - sym_string_literal, - sym_char_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [57998] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1005), 1, - sym_float_number_literal, - ACTIONS(1007), 1, - sym_number_literal, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - ACTIONS(1011), 1, - anon_sym_SQUOTE, - ACTIONS(2423), 1, - anon_sym_LPAREN, - ACTIONS(2427), 1, - anon_sym_LBRACK, - ACTIONS(2429), 1, - sym_name_identifier, - STATE(383), 1, - sym_name_expression, - STATE(618), 1, - sym_subexpression, - STATE(623), 1, - sym_scoped_statement, - STATE(1410), 1, - aux_sym_name_expression_repeat1, - STATE(1765), 1, - aux_sym_name_expression_repeat2, - STATE(2200), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2425), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(723), 2, - sym_extended_name, - sym_literal, - STATE(738), 2, - sym_string_literal, - sym_char_literal, - STATE(615), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [58074] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58116] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58158] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58198] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58240] = 18, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2448), 1, - anon_sym_LBRACE, - ACTIONS(2451), 1, - anon_sym_RBRACE, - ACTIONS(2453), 1, - anon_sym_match, - ACTIONS(2456), 1, - anon_sym_if, - ACTIONS(2459), 1, - anon_sym_do, - ACTIONS(2462), 1, - anon_sym_while, - ACTIONS(2465), 1, - anon_sym_for, - ACTIONS(2468), 1, - anon_sym_loop, ACTIONS(2471), 1, - anon_sym_SEMI, - ACTIONS(2474), 1, - anon_sym_return, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2445), 2, - anon_sym_const, - anon_sym_var, - ACTIONS(2477), 2, - anon_sym_break, - anon_sym_continue, - STATE(1009), 2, - sym_block_statement, - aux_sym_block_repeat1, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(1910), 3, - sym_variable_definition_statement, - sym_flow_control, - sym_prefixed_expression, - STATE(758), 6, - sym_match, - sym_condition, - sym_do_while_loop, - sym_while_loop, - sym_for_loop, - sym_loop_loop, - [58308] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2067), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, + ACTIONS(2473), 1, anon_sym_SQUOTE, - [58350] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(2846), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, + ACTIONS(2850), 1, sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58390] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58430] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58470] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58510] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(497), 1, - sym_float_number_literal, - ACTIONS(499), 1, - sym_number_literal, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(2427), 1, - anon_sym_LBRACK, - ACTIONS(2480), 1, - anon_sym_LPAREN, - ACTIONS(2484), 1, - sym_name_identifier, - STATE(272), 1, + STATE(317), 1, sym_name_expression, - STATE(618), 1, + STATE(575), 1, sym_subexpression, - STATE(623), 1, - sym_scoped_statement, - STATE(1423), 1, + STATE(850), 1, + sym_extended_name, + STATE(1972), 1, aux_sym_name_expression_repeat1, - STATE(1803), 1, + STATE(2314), 1, aux_sym_name_expression_repeat2, - STATE(2214), 1, + STATE(2404), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(2482), 2, + ACTIONS(2848), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [68185] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + ACTIONS(2676), 1, + anon_sym_LPAREN, + ACTIONS(2680), 1, + sym_name_identifier, + STATE(508), 1, + sym_name_expression, + STATE(878), 1, + sym_extended_name, + STATE(1565), 1, + sym_subexpression, + STATE(1994), 1, + aux_sym_name_expression_repeat1, + STATE(2268), 1, + aux_sym_name_expression_repeat2, + STATE(2379), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2678), 2, anon_sym_TILDE, anon_sym_AT, STATE(679), 2, sym_string_literal, sym_char_literal, - STATE(682), 2, - sym_extended_name, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - STATE(615), 5, + STATE(677), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [58586] = 5, + [68259] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2015), 8, + ACTIONS(2065), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68299] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2662), 1, + anon_sym_LBRACK, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + ACTIONS(2852), 1, + anon_sym_LPAREN, + ACTIONS(2856), 1, + sym_name_identifier, + STATE(188), 1, + sym_name_expression, + STATE(778), 1, + sym_extended_name, + STATE(1499), 1, + sym_subexpression, + STATE(1981), 1, + aux_sym_name_expression_repeat1, + STATE(2302), 1, + aux_sym_name_expression_repeat2, + STATE(2331), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2854), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [68373] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -74024,8 +83081,134 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 19, + ACTIONS(2039), 20, anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68413] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 18, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68453] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(2682), 1, + anon_sym_LPAREN, + ACTIONS(2686), 1, + sym_name_identifier, + STATE(187), 1, + sym_name_expression, + STATE(644), 1, + sym_subexpression, + STATE(723), 1, + sym_extended_name, + STATE(1976), 1, + aux_sym_name_expression_repeat1, + STATE(2320), 1, + aux_sym_name_expression_repeat2, + STATE(2410), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2684), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [68527] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 20, + anon_sym_namespace, + anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -74044,13 +83227,15 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [58628] = 4, + [68567] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(2858), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 10, + ACTIONS(343), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -74061,7 +83246,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2079), 18, + ACTIONS(345), 17, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -74075,18 +83260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [58668] = 4, + [68609] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(333), 8, + ACTIONS(2021), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -74095,81 +83279,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2109), 20, + ACTIONS(2023), 20, anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58708] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58748] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 20, - anon_sym_namespace, - anon_sym_partition, + anon_sym_COLON, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -74188,50 +83300,119 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [58788] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, + [68649] = 21, + ACTIONS(5), 1, sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2810), 1, anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, + STATE(832), 1, + sym_name_expression, + STATE(1594), 1, + sym_extended_name, + STATE(2003), 1, + aux_sym_name_expression_repeat1, + STATE(2223), 1, + aux_sym_name_expression_repeat2, + STATE(2345), 1, + aux_sym_reference_expression_repeat1, + STATE(2581), 1, + sym_subexpression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, + ACTIONS(2812), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [68723] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2662), 1, + anon_sym_LBRACK, + ACTIONS(2666), 1, sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, + ACTIONS(2668), 1, sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, anon_sym_SQUOTE, - [58830] = 4, + ACTIONS(2796), 1, + anon_sym_LPAREN, + ACTIONS(2800), 1, + sym_name_identifier, + STATE(186), 1, + sym_name_expression, + STATE(745), 1, + sym_extended_name, + STATE(1493), 1, + sym_subexpression, + STATE(1970), 1, + aux_sym_name_expression_repeat1, + STATE(2308), 1, + aux_sym_name_expression_repeat2, + STATE(2378), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2798), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [68797] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(485), 10, + ACTIONS(2057), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -74242,322 +83423,68 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(487), 18, + ACTIONS(2059), 18, anon_sym_const, anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58870] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58910] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58950] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [58990] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59030] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59072] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59112] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 17, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59154] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [59194] = 4, + [68837] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2105), 8, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68877] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -74566,8 +83493,45 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2107), 20, + ACTIONS(2015), 20, anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [68917] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 20, + anon_sym_namespace, + anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -74582,238 +83546,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [59234] = 22, + [68957] = 21, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(615), 1, + ACTIONS(2493), 1, anon_sym_LBRACK, - ACTIONS(739), 1, - anon_sym_LPAREN, - ACTIONS(753), 1, + ACTIONS(2495), 1, sym_float_number_literal, - ACTIONS(755), 1, + ACTIONS(2497), 1, sym_number_literal, - ACTIONS(757), 1, + ACTIONS(2499), 1, anon_sym_DQUOTE, - ACTIONS(759), 1, + ACTIONS(2501), 1, anon_sym_SQUOTE, - ACTIONS(2486), 1, + ACTIONS(2712), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, sym_name_identifier, - STATE(536), 1, + STATE(343), 1, sym_name_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(633), 1, + STATE(668), 1, sym_subexpression, - STATE(1449), 1, + STATE(768), 1, + sym_extended_name, + STATE(1980), 1, aux_sym_name_expression_repeat1, - STATE(1761), 1, + STATE(2176), 1, aux_sym_name_expression_repeat2, - STATE(2223), 1, + STATE(2386), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(741), 2, + ACTIONS(2714), 2, anon_sym_TILDE, anon_sym_AT, - STATE(837), 2, + STATE(679), 2, sym_string_literal, sym_char_literal, - STATE(851), 2, - sym_extended_name, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - STATE(640), 5, + STATE(677), 5, sym_subexpression_token, sym_binary_operator_expression, sym_reference_expression, sym_function_call_expression, sym_array_expression, - [59310] = 5, + [69031] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, + ACTIONS(1991), 8, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 17, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, + ACTIONS(1993), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69073] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(691), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(2654), 1, + sym_name_identifier, + STATE(503), 1, + sym_name_expression, + STATE(812), 1, + sym_extended_name, + STATE(1608), 1, + sym_subexpression, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2369), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(991), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(729), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [69147] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2860), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_elif, anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [59352] = 4, + [69189] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59392] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 18, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59432] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - sym_name_identifier, - STATE(552), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1430), 1, - aux_sym_name_expression_repeat1, - STATE(1783), 1, - aux_sym_name_expression_repeat2, - STATE(2205), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2411), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1051), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [59508] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, + ACTIONS(2085), 8, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -74821,8 +83745,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 19, + ACTIONS(2087), 20, anon_sym_namespace, + anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -74835,128 +83760,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69229] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, anon_sym_PIPE, anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59550] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59590] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1513), 1, - sym_float_number_literal, - ACTIONS(1515), 1, - sym_number_literal, - ACTIONS(1517), 1, - anon_sym_DQUOTE, - ACTIONS(1519), 1, - anon_sym_SQUOTE, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2488), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - sym_name_identifier, - STATE(541), 1, - sym_name_expression, - STATE(645), 1, - sym_scoped_statement, - STATE(1398), 1, - aux_sym_name_expression_repeat1, - STATE(1522), 1, - sym_subexpression, - STATE(1723), 1, - aux_sym_name_expression_repeat2, - STATE(2197), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2490), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1058), 2, - sym_string_literal, - sym_char_literal, - STATE(1147), 2, - sym_extended_name, - sym_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [59666] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 17, - anon_sym_const, - anon_sym_var, anon_sym_match, anon_sym_if, - anon_sym_elif, - anon_sym_else, anon_sym_do, anon_sym_while, anon_sym_for, @@ -74968,124 +83802,70 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [59708] = 22, + [69269] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(485), 1, + ACTIONS(411), 1, anon_sym_RPAREN, - ACTIONS(2494), 1, + ACTIONS(2862), 1, anon_sym_LPAREN, - ACTIONS(2498), 1, + ACTIONS(2868), 1, sym_name_identifier, - ACTIONS(2502), 1, + ACTIONS(2874), 1, sym_float_number_literal, - ACTIONS(2504), 1, + ACTIONS(2877), 1, sym_number_literal, - ACTIONS(2506), 1, + ACTIONS(2880), 1, anon_sym_DQUOTE, - ACTIONS(2508), 1, + ACTIONS(2883), 1, anon_sym_SQUOTE, - STATE(1401), 1, - aux_sym_name_expression_repeat1, - STATE(1686), 1, + STATE(1617), 1, + sym_extended_name, + STATE(1711), 1, sym_type_subexpression, - STATE(1740), 1, - aux_sym_name_expression_repeat2, - STATE(1930), 1, + STATE(1771), 1, + sym_name_expression, + STATE(1785), 1, sym_subexpression_token, - STATE(2357), 1, + STATE(1944), 1, + aux_sym_name_expression_repeat1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2500), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2496), 2, + ACTIONS(2865), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2500), 2, + ACTIONS(2871), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1042), 2, + STATE(1162), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1676), 2, - sym_extended_name, - sym_literal, - STATE(1715), 2, + STATE(1800), 2, sym_string_literal, sym_char_literal, - STATE(1844), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 3, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(413), 3, + anon_sym_elif, + anon_sym_else, sym_operator, - [59784] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(2494), 1, - anon_sym_LPAREN, - ACTIONS(2498), 1, - sym_name_identifier, - ACTIONS(2502), 1, - sym_float_number_literal, - ACTIONS(2504), 1, - sym_number_literal, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - anon_sym_SQUOTE, - STATE(1401), 1, - aux_sym_name_expression_repeat1, - STATE(1686), 1, - sym_type_subexpression, - STATE(1740), 1, - aux_sym_name_expression_repeat2, - STATE(1930), 1, - sym_subexpression_token, - STATE(2357), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2496), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2500), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1044), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1676), 2, - sym_extended_name, + STATE(1787), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - STATE(1715), 2, - sym_string_literal, - sym_char_literal, - STATE(1844), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 3, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - [59860] = 5, + [69345] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2095), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, + ACTIONS(1991), 8, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -75093,9 +83873,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 19, + ACTIONS(1993), 19, anon_sym_namespace, - anon_sym_partition, + anon_sym_COLON, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -75108,411 +83888,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [59902] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2510), 1, - anon_sym_LPAREN, - ACTIONS(2516), 1, - sym_name_identifier, - ACTIONS(2522), 1, - sym_float_number_literal, - ACTIONS(2525), 1, - sym_number_literal, - ACTIONS(2528), 1, - anon_sym_DQUOTE, - ACTIONS(2531), 1, - anon_sym_SQUOTE, - STATE(1401), 1, - aux_sym_name_expression_repeat1, - STATE(1686), 1, - sym_type_subexpression, - STATE(1740), 1, - aux_sym_name_expression_repeat2, - STATE(1930), 1, - sym_subexpression_token, - STATE(2357), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2513), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2519), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1044), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1676), 2, - sym_extended_name, - sym_literal, - STATE(1715), 2, - sym_string_literal, - sym_char_literal, - STATE(1844), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 3, anon_sym_AMP, - anon_sym_PIPE, + sym_name_identifier, sym_operator, - [59978] = 22, + sym_number_literal, + anon_sym_SQUOTE, + [69387] = 22, ACTIONS(3), 1, sym__line_comment, ACTIONS(387), 1, - sym_operator, - ACTIONS(2534), 1, + anon_sym_COLON, + ACTIONS(2886), 1, anon_sym_LPAREN, - ACTIONS(2540), 1, + ACTIONS(2890), 1, sym_name_identifier, - ACTIONS(2546), 1, + ACTIONS(2894), 1, sym_float_number_literal, - ACTIONS(2549), 1, + ACTIONS(2896), 1, sym_number_literal, - ACTIONS(2552), 1, + ACTIONS(2898), 1, anon_sym_DQUOTE, - ACTIONS(2555), 1, + ACTIONS(2900), 1, anon_sym_SQUOTE, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1720), 1, + STATE(1721), 1, + sym_extended_name, + STATE(1803), 1, sym_type_subexpression, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(1898), 1, + STATE(1823), 1, + sym_name_expression, + STATE(1892), 1, sym_subexpression_token, - STATE(2375), 1, + STATE(1942), 1, + aux_sym_name_expression_repeat1, + STATE(2194), 1, + aux_sym_name_expression_repeat2, + STATE(2493), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2537), 2, + ACTIONS(2888), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2543), 2, + ACTIONS(2892), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1045), 2, + STATE(1234), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(1874), 2, sym_string_literal, sym_char_literal, - STATE(1888), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(385), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [60054] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, + ACTIONS(345), 3, anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, + anon_sym_while, sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60094] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60134] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1221), 1, - sym_float_number_literal, - ACTIONS(1223), 1, - sym_number_literal, - ACTIONS(1225), 1, - anon_sym_DQUOTE, - ACTIONS(1227), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2562), 1, - sym_name_identifier, - STATE(518), 1, - sym_name_expression, - STATE(631), 1, + STATE(1873), 3, sym_scoped_statement, - STATE(1409), 1, - aux_sym_name_expression_repeat1, - STATE(1499), 1, - sym_subexpression, - STATE(1756), 1, - aux_sym_name_expression_repeat2, - STATE(2188), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2560), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(899), 2, - sym_string_literal, - sym_char_literal, - STATE(934), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [60210] = 5, + [69463] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, + ACTIONS(2013), 8, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2103), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60252] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 17, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60294] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 19, + ACTIONS(2015), 20, anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60336] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60378] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 20, - anon_sym_namespace, - anon_sym_partition, + anon_sym_COLON, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -75531,15 +83983,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [60418] = 5, + [69503] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2057), 10, + ACTIONS(2021), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -75550,9 +84000,46 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 17, + ACTIONS(2023), 18, anon_sym_const, anon_sym_var, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69543] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_match, @@ -75568,316 +84055,7 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [60460] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60502] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60542] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 17, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60584] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60624] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60664] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(565), 1, - anon_sym_LPAREN, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - ACTIONS(2564), 1, - sym_name_identifier, - STATE(561), 1, - sym_name_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(650), 1, - sym_subexpression, - STATE(1436), 1, - aux_sym_name_expression_repeat1, - STATE(1826), 1, - aux_sym_name_expression_repeat2, - STATE(2252), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(567), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1112), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [60740] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60782] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60822] = 4, + [69583] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -75897,6 +84075,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2071), 18, anon_sym_const, anon_sym_var, + anon_sym_AMP, anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_match, @@ -75908,12 +84087,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [60862] = 4, + [69623] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -75933,6 +84111,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2075), 18, anon_sym_const, anon_sym_var, + anon_sym_AMP, anon_sym_PIPE, anon_sym_DASH_GT, anon_sym_match, @@ -75944,16 +84123,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69663] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2902), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69705] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69745] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 20, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [60902] = 5, + [69785] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 20, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69825] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69865] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69905] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [69945] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -75966,114 +84395,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2067), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60944] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [60984] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [61024] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 20, + ACTIONS(2067), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -76088,73 +84410,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [61064] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RPAREN, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(2566), 1, - anon_sym_LPAREN, - ACTIONS(2570), 1, - sym_name_identifier, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1719), 1, - sym_type_subexpression, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(1904), 1, - sym_subexpression_token, - STATE(2340), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2568), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2572), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1074), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(1921), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 3, anon_sym_PIPE, anon_sym_DASH_GT, + sym_name_identifier, sym_operator, - [61140] = 4, + sym_number_literal, + anon_sym_SQUOTE, + [69985] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 8, + ACTIONS(2045), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -76163,7 +84433,42 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 20, + ACTIONS(2047), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [70027] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -76178,807 +84483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [61180] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 18, - anon_sym_const, - anon_sym_var, anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [61220] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(2574), 1, - sym_name_identifier, - STATE(542), 1, - sym_name_expression, - STATE(660), 1, - sym_subexpression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [61296] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1653), 1, - sym_float_number_literal, - ACTIONS(1655), 1, - sym_number_literal, - ACTIONS(1657), 1, - anon_sym_DQUOTE, - ACTIONS(1659), 1, - anon_sym_SQUOTE, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_name_identifier, - STATE(556), 1, - sym_name_expression, - STATE(645), 1, - sym_scoped_statement, - STATE(1408), 1, - aux_sym_name_expression_repeat1, - STATE(1533), 1, - sym_subexpression, - STATE(1752), 1, - aux_sym_name_expression_repeat2, - STATE(2253), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2578), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(996), 2, - sym_extended_name, - sym_literal, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [61372] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(2566), 1, - anon_sym_LPAREN, - ACTIONS(2570), 1, - sym_name_identifier, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1719), 1, - sym_type_subexpression, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(1904), 1, - sym_subexpression_token, - STATE(2340), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2568), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2572), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1081), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(1921), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 3, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [61448] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(605), 1, - anon_sym_LPAREN, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - ACTIONS(2582), 1, - sym_name_identifier, - STATE(440), 1, - sym_name_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(633), 1, - sym_subexpression, - STATE(1412), 1, - aux_sym_name_expression_repeat1, - STATE(1732), 1, - aux_sym_name_expression_repeat2, - STATE(2204), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(607), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(697), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [61524] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(805), 1, - anon_sym_LPAREN, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(825), 1, - anon_sym_SQUOTE, - ACTIONS(2584), 1, - sym_name_identifier, - STATE(513), 1, - sym_name_expression, - STATE(647), 1, - sym_scoped_statement, - STATE(650), 1, - sym_subexpression, - STATE(1463), 1, - aux_sym_name_expression_repeat1, - STATE(1694), 1, - aux_sym_name_expression_repeat2, - STATE(2184), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(807), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - STATE(944), 2, - sym_extended_name, - sym_literal, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [61600] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [61640] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [61680] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2119), 1, - sym_name_identifier, - ACTIONS(2123), 1, - sym_float_number_literal, - ACTIONS(2125), 1, - sym_number_literal, - ACTIONS(2127), 1, - anon_sym_DQUOTE, - ACTIONS(2129), 1, - anon_sym_SQUOTE, - ACTIONS(2427), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_LPAREN, - STATE(623), 1, - sym_scoped_statement, - STATE(692), 1, - sym_name_expression, - STATE(1421), 1, - aux_sym_name_expression_repeat1, - STATE(1794), 1, - aux_sym_name_expression_repeat2, - STATE(2222), 1, - sym_subexpression, - STATE(2259), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2588), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1543), 2, - sym_extended_name, - sym_literal, - STATE(1550), 2, - sym_string_literal, - sym_char_literal, - STATE(615), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [61756] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [61796] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2590), 1, - anon_sym_LPAREN, - ACTIONS(2596), 1, - sym_name_identifier, - ACTIONS(2602), 1, - sym_float_number_literal, - ACTIONS(2605), 1, - sym_number_literal, - ACTIONS(2608), 1, - anon_sym_DQUOTE, - ACTIONS(2611), 1, - anon_sym_SQUOTE, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1719), 1, - sym_type_subexpression, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(1904), 1, - sym_subexpression_token, - STATE(2340), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2593), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2599), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1081), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(1921), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 3, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - [61872] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2614), 1, - anon_sym_LPAREN, - ACTIONS(2618), 1, - sym_name_identifier, - ACTIONS(2620), 1, - sym_float_number_literal, - ACTIONS(2622), 1, - sym_number_literal, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - ACTIONS(2626), 1, - anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1289), 1, - sym_name_expression, - STATE(1457), 1, - aux_sym_name_expression_repeat1, - STATE(1684), 1, - aux_sym_name_expression_repeat2, - STATE(2195), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2616), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1873), 2, - sym_extended_name, - sym_literal, - STATE(1893), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [61948] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 18, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [61988] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62028] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62068] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 17, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62110] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62150] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62192] = 4, + [70067] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -77009,1796 +84520,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62232] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62272] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1221), 1, - sym_float_number_literal, - ACTIONS(1223), 1, - sym_number_literal, - ACTIONS(1225), 1, - anon_sym_DQUOTE, - ACTIONS(1227), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2558), 1, - anon_sym_LPAREN, - ACTIONS(2562), 1, - sym_name_identifier, - STATE(518), 1, - sym_name_expression, - STATE(631), 1, - sym_scoped_statement, - STATE(639), 1, - sym_subexpression, - STATE(1409), 1, - aux_sym_name_expression_repeat1, - STATE(1756), 1, - aux_sym_name_expression_repeat2, - STATE(2188), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2560), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(899), 2, - sym_string_literal, - sym_char_literal, - STATE(934), 2, - sym_extended_name, - sym_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62348] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1653), 1, - sym_float_number_literal, - ACTIONS(1655), 1, - sym_number_literal, - ACTIONS(1657), 1, - anon_sym_DQUOTE, - ACTIONS(1659), 1, - anon_sym_SQUOTE, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - anon_sym_LPAREN, - ACTIONS(2580), 1, - sym_name_identifier, - STATE(556), 1, - sym_name_expression, - STATE(645), 1, - sym_scoped_statement, - STATE(646), 1, - sym_subexpression, - STATE(1408), 1, - aux_sym_name_expression_repeat1, - STATE(1752), 1, - aux_sym_name_expression_repeat2, - STATE(2253), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2578), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(996), 2, - sym_extended_name, - sym_literal, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62424] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62464] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2295), 1, - sym_name_identifier, - ACTIONS(2299), 1, - sym_float_number_literal, - ACTIONS(2301), 1, - sym_number_literal, - ACTIONS(2303), 1, - anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2628), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_scoped_statement, - STATE(639), 1, - sym_subexpression, - STATE(855), 1, - sym_name_expression, - STATE(1406), 1, - aux_sym_name_expression_repeat1, - STATE(1747), 1, - aux_sym_name_expression_repeat2, - STATE(2224), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2630), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1590), 2, - sym_string_literal, - sym_char_literal, - STATE(1644), 2, - sym_extended_name, - sym_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62540] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(519), 1, - anon_sym_LPAREN, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(539), 1, - anon_sym_SQUOTE, - ACTIONS(2632), 1, - sym_name_identifier, - STATE(517), 1, - sym_name_expression, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1459), 1, - aux_sym_name_expression_repeat1, - STATE(1776), 1, - aux_sym_name_expression_repeat2, - STATE(2238), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(521), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(815), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62616] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1799), 1, - sym_float_number_literal, - ACTIONS(1801), 1, - sym_number_literal, - ACTIONS(1803), 1, - anon_sym_DQUOTE, - ACTIONS(1805), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2638), 1, - sym_name_identifier, - STATE(566), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1465), 1, - aux_sym_name_expression_repeat1, - STATE(1579), 1, - sym_subexpression, - STATE(1706), 1, - aux_sym_name_expression_repeat2, - STATE(2220), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2636), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1282), 2, - sym_string_literal, - sym_char_literal, - STATE(1290), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62692] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - ACTIONS(2640), 1, - sym_name_identifier, - STATE(569), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1572), 1, - sym_subexpression, - STATE(1675), 1, - aux_sym_name_expression_repeat2, - STATE(2202), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(543), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62768] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [62808] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(827), 1, - anon_sym_LPAREN, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(847), 1, - anon_sym_SQUOTE, - ACTIONS(2574), 1, - sym_name_identifier, - STATE(542), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1419), 1, - aux_sym_name_expression_repeat1, - STATE(1544), 1, - sym_subexpression, - STATE(1677), 1, - aux_sym_name_expression_repeat2, - STATE(2187), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(829), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1104), 2, - sym_extended_name, - sym_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62884] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2642), 1, - anon_sym_LPAREN, - ACTIONS(2646), 1, - sym_name_identifier, - ACTIONS(2648), 1, - sym_float_number_literal, - ACTIONS(2650), 1, - sym_number_literal, - ACTIONS(2652), 1, - anon_sym_DQUOTE, - ACTIONS(2654), 1, - anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1263), 1, - sym_name_expression, - STATE(1464), 1, - aux_sym_name_expression_repeat1, - STATE(1735), 1, - aux_sym_name_expression_repeat2, - STATE(2246), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2644), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1850), 2, - sym_extended_name, - sym_literal, - STATE(1854), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [62960] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(597), 1, - sym_float_number_literal, - ACTIONS(599), 1, - sym_number_literal, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(603), 1, - anon_sym_SQUOTE, - ACTIONS(2427), 1, - anon_sym_LBRACK, - ACTIONS(2656), 1, - anon_sym_LPAREN, - ACTIONS(2660), 1, - sym_name_identifier, - STATE(287), 1, - sym_name_expression, - STATE(623), 1, - sym_scoped_statement, - STATE(1387), 1, - aux_sym_name_expression_repeat1, - STATE(1394), 1, - sym_subexpression, - STATE(1665), 1, - aux_sym_name_expression_repeat2, - STATE(2245), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2658), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(690), 2, - sym_string_literal, - sym_char_literal, - STATE(764), 2, - sym_extended_name, - sym_literal, - STATE(615), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63036] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2498), 1, - sym_name_identifier, - ACTIONS(2502), 1, - sym_float_number_literal, - ACTIONS(2504), 1, - sym_number_literal, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - anon_sym_SQUOTE, - ACTIONS(2662), 1, - anon_sym_LPAREN, - STATE(645), 1, - sym_scoped_statement, - STATE(646), 1, - sym_subexpression, - STATE(1041), 1, - sym_name_expression, - STATE(1401), 1, - aux_sym_name_expression_repeat1, - STATE(1740), 1, - aux_sym_name_expression_repeat2, - STATE(2212), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2664), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1676), 2, - sym_extended_name, - sym_literal, - STATE(1715), 2, - sym_string_literal, - sym_char_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63112] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(783), 1, - anon_sym_LPAREN, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - ACTIONS(2666), 1, - sym_name_identifier, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1314), 1, - sym_name_expression, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(2221), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(785), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63188] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [63230] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2642), 1, - anon_sym_LPAREN, - ACTIONS(2646), 1, - sym_name_identifier, - ACTIONS(2648), 1, - sym_float_number_literal, - ACTIONS(2650), 1, - sym_number_literal, - ACTIONS(2652), 1, - anon_sym_DQUOTE, - ACTIONS(2654), 1, - anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(1263), 1, - sym_name_expression, - STATE(1464), 1, - aux_sym_name_expression_repeat1, - STATE(1735), 1, - aux_sym_name_expression_repeat2, - STATE(2246), 1, - aux_sym_reference_expression_repeat1, - STATE(2394), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2644), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1850), 2, - sym_extended_name, - sym_literal, - STATE(1854), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63306] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(175), 1, - anon_sym_LPAREN, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(2668), 1, - sym_name_identifier, - STATE(580), 1, - sym_name_expression, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1442), 1, - aux_sym_name_expression_repeat1, - STATE(1721), 1, - aux_sym_name_expression_repeat2, - STATE(2191), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(191), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1330), 2, - sym_extended_name, - sym_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63382] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(497), 1, - sym_float_number_literal, - ACTIONS(499), 1, - sym_number_literal, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(2427), 1, - anon_sym_LBRACK, - ACTIONS(2480), 1, - anon_sym_LPAREN, - ACTIONS(2484), 1, - sym_name_identifier, - STATE(272), 1, - sym_name_expression, - STATE(623), 1, - sym_scoped_statement, - STATE(1382), 1, - sym_subexpression, - STATE(1423), 1, - aux_sym_name_expression_repeat1, - STATE(1803), 1, - aux_sym_name_expression_repeat2, - STATE(2214), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2482), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(679), 2, - sym_string_literal, - sym_char_literal, - STATE(682), 2, - sym_extended_name, - sym_literal, - STATE(615), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63458] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1419), 1, - sym_float_number_literal, - ACTIONS(1421), 1, - sym_number_literal, - ACTIONS(1423), 1, - anon_sym_DQUOTE, - ACTIONS(1425), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2670), 1, - anon_sym_LPAREN, - ACTIONS(2674), 1, - sym_name_identifier, - STATE(534), 1, - sym_name_expression, - STATE(631), 1, - sym_scoped_statement, - STATE(639), 1, - sym_subexpression, - STATE(1399), 1, - aux_sym_name_expression_repeat1, - STATE(1730), 1, - aux_sym_name_expression_repeat2, - STATE(2199), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2672), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(807), 2, - sym_string_literal, - sym_char_literal, - STATE(835), 2, - sym_extended_name, - sym_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63534] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(213), 1, - anon_sym_LPAREN, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - ACTIONS(2676), 1, - sym_name_identifier, - STATE(574), 1, - sym_name_expression, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1396), 1, - aux_sym_name_expression_repeat1, - STATE(1688), 1, - aux_sym_name_expression_repeat2, - STATE(2211), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(229), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1257), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63610] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1133), 1, - anon_sym_LPAREN, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - ACTIONS(2311), 1, - sym_name_identifier, - STATE(625), 1, - sym_scoped_statement, - STATE(633), 1, - sym_subexpression, - STATE(880), 1, - sym_name_expression, - STATE(1433), 1, - aux_sym_name_expression_repeat1, - STATE(1838), 1, - aux_sym_name_expression_repeat2, - STATE(2226), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1135), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1658), 2, - sym_extended_name, - sym_literal, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63686] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2259), 1, - sym_float_number_literal, - ACTIONS(2261), 1, - sym_number_literal, - ACTIONS(2263), 1, - anon_sym_DQUOTE, - ACTIONS(2265), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2678), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - sym_name_identifier, - STATE(596), 1, - sym_scoped_statement, - STATE(797), 1, - sym_name_expression, - STATE(1426), 1, - aux_sym_name_expression_repeat1, - STATE(1808), 1, - aux_sym_name_expression_repeat2, - STATE(2207), 1, - aux_sym_reference_expression_repeat1, - STATE(2317), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2680), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1576), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63762] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [63804] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1513), 1, - sym_float_number_literal, - ACTIONS(1515), 1, - sym_number_literal, - ACTIONS(1517), 1, - anon_sym_DQUOTE, - ACTIONS(1519), 1, - anon_sym_SQUOTE, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2488), 1, - anon_sym_LPAREN, - ACTIONS(2492), 1, - sym_name_identifier, - STATE(541), 1, - sym_name_expression, - STATE(645), 1, - sym_scoped_statement, - STATE(646), 1, - sym_subexpression, - STATE(1398), 1, - aux_sym_name_expression_repeat1, - STATE(1723), 1, - aux_sym_name_expression_repeat2, - STATE(2197), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2490), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1058), 2, - sym_string_literal, - sym_char_literal, - STATE(1147), 2, - sym_extended_name, - sym_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63880] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(673), 1, - anon_sym_LPAREN, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - ACTIONS(2684), 1, - sym_name_identifier, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1322), 1, - sym_name_expression, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2228), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(675), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [63956] = 5, + [70107] = 22, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, + ACTIONS(387), 1, + anon_sym_COLON, + ACTIONS(2904), 1, + anon_sym_LPAREN, + ACTIONS(2908), 1, + sym_name_identifier, + ACTIONS(2912), 1, + sym_float_number_literal, + ACTIONS(2914), 1, + sym_number_literal, + ACTIONS(2916), 1, + anon_sym_DQUOTE, + ACTIONS(2918), 1, + anon_sym_SQUOTE, + STATE(1753), 1, + sym_extended_name, + STATE(1799), 1, + sym_type_subexpression, + STATE(1819), 1, + sym_name_expression, + STATE(1893), 1, + sym_subexpression_token, + STATE(2015), 1, + aux_sym_name_expression_repeat1, + STATE(2183), 1, + aux_sym_name_expression_repeat2, + STATE(2486), 1, + aux_sym_reference_expression_repeat1, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2906), 2, anon_sym_TILDE, anon_sym_AT, + ACTIONS(2910), 2, sym_type_identifier, sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, + STATE(1223), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1882), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(345), 3, + anon_sym_AMP, + anon_sym_then, sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [63998] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(717), 1, - anon_sym_LPAREN, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(2686), 1, - sym_name_identifier, - STATE(557), 1, - sym_name_expression, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, + STATE(1881), 3, sym_scoped_statement, - STATE(1458), 1, - aux_sym_name_expression_repeat1, - STATE(1796), 1, - aux_sym_name_expression_repeat2, - STATE(2264), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(719), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - STATE(989), 2, - sym_extended_name, + sym_access_expression, sym_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [64074] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [64116] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [64158] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1799), 1, - sym_float_number_literal, - ACTIONS(1801), 1, - sym_number_literal, - ACTIONS(1803), 1, - anon_sym_DQUOTE, - ACTIONS(1805), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2638), 1, - sym_name_identifier, - STATE(566), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1465), 1, - aux_sym_name_expression_repeat1, - STATE(1706), 1, - aux_sym_name_expression_repeat2, - STATE(2220), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2636), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1282), 2, - sym_string_literal, - sym_char_literal, - STATE(1290), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [64234] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1753), 1, - sym_float_number_literal, - ACTIONS(1755), 1, - sym_number_literal, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, - sym_name_identifier, - STATE(563), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1405), 1, - aux_sym_name_expression_repeat1, - STATE(1661), 1, - sym_subexpression, - STATE(1762), 1, - aux_sym_name_expression_repeat2, - STATE(2261), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2690), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1196), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [64310] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - ACTIONS(2694), 1, - sym_name_identifier, - STATE(564), 1, - sym_name_expression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1660), 1, - sym_subexpression, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [64386] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(615), 1, - anon_sym_LBRACK, - ACTIONS(1013), 1, - anon_sym_LPAREN, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - ACTIONS(2696), 1, - sym_name_identifier, - STATE(530), 1, - sym_name_expression, - STATE(625), 1, - sym_scoped_statement, - STATE(633), 1, - sym_subexpression, - STATE(1425), 1, - aux_sym_name_expression_repeat1, - STATE(1814), 1, - aux_sym_name_expression_repeat2, - STATE(2198), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1015), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(860), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(640), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [64462] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2409), 1, - anon_sym_LPAREN, - ACTIONS(2413), 1, - sym_name_identifier, - STATE(552), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1430), 1, - aux_sym_name_expression_repeat1, - STATE(1521), 1, - sym_subexpression, - STATE(1783), 1, - aux_sym_name_expression_repeat2, - STATE(2205), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2411), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1051), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [64538] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [64580] = 18, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(2375), 1, - anon_sym_match, - ACTIONS(2377), 1, - anon_sym_if, - ACTIONS(2379), 1, - anon_sym_do, - ACTIONS(2381), 1, - anon_sym_while, - ACTIONS(2383), 1, - anon_sym_for, - ACTIONS(2385), 1, - anon_sym_loop, - ACTIONS(2387), 1, - anon_sym_SEMI, - ACTIONS(2389), 1, - anon_sym_return, - ACTIONS(2698), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2371), 2, - anon_sym_const, - anon_sym_var, - ACTIONS(2391), 2, - anon_sym_break, - anon_sym_continue, - STATE(1009), 2, - sym_block_statement, - aux_sym_block_repeat1, - STATE(595), 3, - sym_block, - sym_return_expression, - sym_loop_control_expression, - STATE(1910), 3, - sym_variable_definition_statement, - sym_flow_control, - sym_prefixed_expression, - STATE(758), 6, - sym_match, - sym_condition, - sym_do_while_loop, - sym_while_loop, - sym_for_loop, - sym_loop_loop, - [64648] = 4, + [70183] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -78827,20 +84608,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [64688] = 4, + [70223] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2073), 8, + ACTIONS(2037), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -78849,8 +84630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2075), 20, + ACTIONS(2039), 20, anon_sym_namespace, + anon_sym_COLON, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -78863,218 +84645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, + anon_sym_AMP, anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [64728] = 4, + [70263] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [64768] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [64808] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [64848] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [64888] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(575), 1, - anon_sym_LBRACK, - ACTIONS(761), 1, - anon_sym_LPAREN, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - sym_name_identifier, - STATE(647), 1, - sym_scoped_statement, - STATE(650), 1, - sym_subexpression, - STATE(1069), 1, - sym_name_expression, - STATE(1444), 1, - aux_sym_name_expression_repeat1, - STATE(1828), 1, - aux_sym_name_expression_repeat2, - STATE(2251), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1710), 2, - sym_extended_name, - sym_literal, - STATE(653), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [64964] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, + ACTIONS(2073), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -79085,79 +84668,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2079), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65004] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65044] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, + ACTIONS(2075), 18, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -79176,13 +84687,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [65084] = 4, + [70303] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(313), 10, + ACTIONS(2069), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -79193,557 +84704,32 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2081), 18, + ACTIONS(2071), 18, anon_sym_const, anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65124] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2295), 1, - sym_name_identifier, - ACTIONS(2299), 1, - sym_float_number_literal, - ACTIONS(2301), 1, - sym_number_literal, - ACTIONS(2303), 1, - anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2628), 1, - anon_sym_LPAREN, - STATE(631), 1, - sym_scoped_statement, - STATE(855), 1, - sym_name_expression, - STATE(1406), 1, - aux_sym_name_expression_repeat1, - STATE(1747), 1, - aux_sym_name_expression_repeat2, - STATE(2224), 1, - aux_sym_reference_expression_repeat1, - STATE(2313), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2630), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1590), 2, - sym_string_literal, - sym_char_literal, - STATE(1644), 2, - sym_extended_name, - sym_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [65200] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65240] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 20, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65280] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65320] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65360] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(965), 1, - sym_float_number_literal, - ACTIONS(967), 1, - sym_number_literal, - ACTIONS(969), 1, - anon_sym_DQUOTE, - ACTIONS(971), 1, - anon_sym_SQUOTE, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2443), 1, - sym_name_identifier, - STATE(366), 1, - sym_name_expression, - STATE(631), 1, - sym_scoped_statement, - STATE(1391), 1, - sym_subexpression, - STATE(1413), 1, - aux_sym_name_expression_repeat1, - STATE(1781), 1, - aux_sym_name_expression_repeat2, - STATE(2229), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2439), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(704), 2, - sym_extended_name, - sym_literal, - STATE(713), 2, - sym_string_literal, - sym_char_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [65436] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65476] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(905), 1, - sym_float_number_literal, - ACTIONS(907), 1, - sym_number_literal, - ACTIONS(909), 1, - anon_sym_DQUOTE, - ACTIONS(911), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2700), 1, - anon_sym_LPAREN, - ACTIONS(2704), 1, - sym_name_identifier, - STATE(337), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1440), 1, - aux_sym_name_expression_repeat1, - STATE(1833), 1, - aux_sym_name_expression_repeat2, - STATE(2260), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2702), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(691), 2, - sym_extended_name, - sym_literal, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [65552] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(597), 1, - sym_float_number_literal, - ACTIONS(599), 1, - sym_number_literal, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(603), 1, - anon_sym_SQUOTE, - ACTIONS(2427), 1, - anon_sym_LBRACK, - ACTIONS(2656), 1, - anon_sym_LPAREN, - ACTIONS(2660), 1, - sym_name_identifier, - STATE(287), 1, - sym_name_expression, - STATE(618), 1, - sym_subexpression, - STATE(623), 1, - sym_scoped_statement, - STATE(1387), 1, - aux_sym_name_expression_repeat1, - STATE(1665), 1, - aux_sym_name_expression_repeat2, - STATE(2245), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2658), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(690), 2, - sym_string_literal, - sym_char_literal, - STATE(764), 2, - sym_extended_name, - sym_literal, - STATE(615), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [65628] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 20, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65668] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65710] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RPAREN, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - ACTIONS(2706), 1, - anon_sym_LPAREN, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(1821), 1, - sym_type_subexpression, - STATE(1853), 1, - sym_subexpression_token, - STATE(2337), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2708), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2710), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1177), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(1935), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 3, + anon_sym_match, + anon_sym_if, anon_sym_elif, anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, sym_operator, - [65786] = 5, + sym_number_literal, + anon_sym_SQUOTE, + [70343] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2057), 8, + ACTIONS(2129), 8, ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, @@ -79752,7 +84738,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 19, + ACTIONS(2131), 20, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -79768,2511 +84754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [65828] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(73), 1, - anon_sym_SQUOTE, - ACTIONS(511), 1, - sym_operator, - ACTIONS(2415), 1, - sym_name_identifier, - ACTIONS(2417), 1, - anon_sym_LPAREN, - STATE(1403), 1, - aux_sym_name_expression_repeat1, - STATE(1720), 1, - sym_type_subexpression, - STATE(1724), 1, - aux_sym_name_expression_repeat2, - STATE(1898), 1, - sym_subexpression_token, - STATE(2375), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2419), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2421), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1045), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1742), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(1888), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(509), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [65904] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2119), 1, - sym_name_identifier, - ACTIONS(2123), 1, - sym_float_number_literal, - ACTIONS(2125), 1, - sym_number_literal, - ACTIONS(2127), 1, - anon_sym_DQUOTE, - ACTIONS(2129), 1, - anon_sym_SQUOTE, - ACTIONS(2427), 1, - anon_sym_LBRACK, - ACTIONS(2586), 1, - anon_sym_LPAREN, - STATE(618), 1, - sym_subexpression, - STATE(623), 1, - sym_scoped_statement, - STATE(692), 1, - sym_name_expression, - STATE(1421), 1, - aux_sym_name_expression_repeat1, - STATE(1794), 1, - aux_sym_name_expression_repeat2, - STATE(2259), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2588), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1543), 2, - sym_extended_name, - sym_literal, - STATE(1550), 2, - sym_string_literal, - sym_char_literal, - STATE(615), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [65980] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1199), 1, - sym_float_number_literal, - ACTIONS(1201), 1, - sym_number_literal, - ACTIONS(1203), 1, - anon_sym_DQUOTE, - ACTIONS(1205), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2712), 1, - anon_sym_LPAREN, - ACTIONS(2716), 1, - sym_name_identifier, - STATE(516), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1431), 1, - aux_sym_name_expression_repeat1, - STATE(1818), 1, - aux_sym_name_expression_repeat2, - STATE(2235), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2714), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(798), 2, - sym_string_literal, - sym_char_literal, - STATE(813), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66056] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [66098] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1285), 1, - sym_float_number_literal, - ACTIONS(1287), 1, - sym_number_literal, - ACTIONS(1289), 1, - anon_sym_DQUOTE, - ACTIONS(1291), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2431), 1, - anon_sym_LPAREN, - ACTIONS(2435), 1, - sym_name_identifier, - STATE(523), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1417), 1, - aux_sym_name_expression_repeat1, - STATE(1789), 1, - aux_sym_name_expression_repeat2, - STATE(2244), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2433), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(825), 2, - sym_extended_name, - sym_literal, - STATE(857), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66174] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [66216] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [66258] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [66298] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [66340] = 22, + [70383] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2718), 1, - anon_sym_LPAREN, - ACTIONS(2724), 1, - sym_name_identifier, - ACTIONS(2730), 1, - sym_float_number_literal, - ACTIONS(2733), 1, - sym_number_literal, - ACTIONS(2736), 1, - anon_sym_DQUOTE, - ACTIONS(2739), 1, - anon_sym_SQUOTE, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(1821), 1, - sym_type_subexpression, - STATE(1853), 1, - sym_subexpression_token, - STATE(2337), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2721), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2727), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1159), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(1935), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 3, - anon_sym_elif, - anon_sym_else, - sym_operator, - [66416] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [66456] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [66496] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2259), 1, - sym_float_number_literal, - ACTIONS(2261), 1, - sym_number_literal, - ACTIONS(2263), 1, - anon_sym_DQUOTE, - ACTIONS(2265), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2678), 1, - anon_sym_LPAREN, - ACTIONS(2682), 1, - sym_name_identifier, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(797), 1, - sym_name_expression, - STATE(1426), 1, - aux_sym_name_expression_repeat1, - STATE(1808), 1, - aux_sym_name_expression_repeat2, - STATE(2207), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2680), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1576), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66572] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2395), 1, - anon_sym_LPAREN, - ACTIONS(2399), 1, - sym_name_identifier, - ACTIONS(2401), 1, - sym_float_number_literal, - ACTIONS(2403), 1, - sym_number_literal, - ACTIONS(2405), 1, - anon_sym_DQUOTE, - ACTIONS(2407), 1, - anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(1273), 1, - sym_name_expression, - STATE(1450), 1, - aux_sym_name_expression_repeat1, - STATE(1727), 1, - aux_sym_name_expression_repeat2, - STATE(2209), 1, - aux_sym_reference_expression_repeat1, - STATE(2429), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2397), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1894), 2, - sym_extended_name, - sym_literal, - STATE(1931), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66648] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(905), 1, - sym_float_number_literal, - ACTIONS(907), 1, - sym_number_literal, - ACTIONS(909), 1, - anon_sym_DQUOTE, - ACTIONS(911), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2700), 1, - anon_sym_LPAREN, - ACTIONS(2704), 1, - sym_name_identifier, - STATE(337), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1395), 1, - sym_subexpression, - STATE(1440), 1, - aux_sym_name_expression_repeat1, - STATE(1833), 1, - aux_sym_name_expression_repeat2, - STATE(2260), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2702), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(691), 2, - sym_extended_name, - sym_literal, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66724] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, - anon_sym_LPAREN, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - ACTIONS(2393), 1, - sym_name_identifier, - STATE(660), 1, - sym_subexpression, - STATE(664), 1, - sym_scoped_statement, - STATE(1255), 1, - sym_name_expression, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(2183), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(697), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66800] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2343), 1, - anon_sym_LBRACK, - ACTIONS(2498), 1, - sym_name_identifier, - ACTIONS(2502), 1, - sym_float_number_literal, - ACTIONS(2504), 1, - sym_number_literal, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - anon_sym_SQUOTE, - ACTIONS(2662), 1, - anon_sym_LPAREN, - STATE(645), 1, - sym_scoped_statement, - STATE(1041), 1, - sym_name_expression, - STATE(1401), 1, - aux_sym_name_expression_repeat1, - STATE(1740), 1, - aux_sym_name_expression_repeat2, - STATE(2212), 1, - aux_sym_reference_expression_repeat1, - STATE(2347), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2664), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1676), 2, - sym_extended_name, - sym_literal, - STATE(1715), 2, - sym_string_literal, - sym_char_literal, - STATE(642), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66876] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2353), 1, - anon_sym_LPAREN, - ACTIONS(2357), 1, - sym_name_identifier, - ACTIONS(2359), 1, - sym_float_number_literal, - ACTIONS(2361), 1, - sym_number_literal, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(2365), 1, - anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(1286), 1, - sym_name_expression, - STATE(1460), 1, - aux_sym_name_expression_repeat1, - STATE(1705), 1, - aux_sym_name_expression_repeat2, - STATE(2185), 1, - aux_sym_reference_expression_repeat1, - STATE(2413), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2355), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1861), 2, - sym_extended_name, - sym_literal, - STATE(1872), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [66952] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1081), 1, - anon_sym_LPAREN, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - ACTIONS(2742), 1, - sym_name_identifier, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1148), 1, - sym_name_expression, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(2258), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1083), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67028] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1799), 1, - sym_float_number_literal, - ACTIONS(1801), 1, - sym_number_literal, - ACTIONS(1803), 1, - anon_sym_DQUOTE, - ACTIONS(1805), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2634), 1, - anon_sym_LPAREN, - ACTIONS(2638), 1, - sym_name_identifier, - STATE(566), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1465), 1, - aux_sym_name_expression_repeat1, - STATE(1624), 1, - sym_subexpression, - STATE(1706), 1, - aux_sym_name_expression_repeat2, - STATE(2220), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2636), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1282), 2, - sym_string_literal, - sym_char_literal, - STATE(1290), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67104] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(913), 1, - anon_sym_LPAREN, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - ACTIONS(2694), 1, - sym_name_identifier, - STATE(564), 1, - sym_name_expression, - STATE(660), 1, - sym_subexpression, - STATE(664), 1, - sym_scoped_statement, - STATE(1418), 1, - aux_sym_name_expression_repeat1, - STATE(1788), 1, - aux_sym_name_expression_repeat2, - STATE(2218), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(915), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1189), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67180] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - ACTIONS(2744), 1, - sym_name_identifier, - STATE(581), 1, - sym_name_expression, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1400), 1, - aux_sym_name_expression_repeat1, - STATE(1678), 1, - aux_sym_name_expression_repeat2, - STATE(2255), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(269), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1335), 2, - sym_extended_name, - sym_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67256] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [67296] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(541), 1, - anon_sym_LPAREN, - ACTIONS(551), 1, - anon_sym_LBRACK, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - ACTIONS(2640), 1, - sym_name_identifier, - STATE(569), 1, - sym_name_expression, - STATE(660), 1, - sym_subexpression, - STATE(664), 1, - sym_scoped_statement, - STATE(1434), 1, - aux_sym_name_expression_repeat1, - STATE(1675), 1, - aux_sym_name_expression_repeat2, - STATE(2202), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(543), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - STATE(1281), 2, - sym_extended_name, - sym_literal, - STATE(661), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67372] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1753), 1, - sym_float_number_literal, - ACTIONS(1755), 1, - sym_number_literal, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, - sym_name_identifier, - STATE(563), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(1405), 1, - aux_sym_name_expression_repeat1, - STATE(1762), 1, - aux_sym_name_expression_repeat2, - STATE(2261), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2690), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1196), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67448] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1753), 1, - sym_float_number_literal, - ACTIONS(1755), 1, - sym_number_literal, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2688), 1, - anon_sym_LPAREN, - ACTIONS(2692), 1, - sym_name_identifier, - STATE(563), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1405), 1, - aux_sym_name_expression_repeat1, - STATE(1629), 1, - sym_subexpression, - STATE(1762), 1, - aux_sym_name_expression_repeat2, - STATE(2261), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2690), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1196), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67524] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [67566] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(1091), 1, - sym_name_identifier, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - ACTIONS(2706), 1, - anon_sym_LPAREN, - STATE(1407), 1, - aux_sym_name_expression_repeat1, - STATE(1702), 1, - aux_sym_name_expression_repeat2, - STATE(1821), 1, - sym_type_subexpression, - STATE(1853), 1, - sym_subexpression_token, - STATE(2337), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2708), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2710), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1159), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1822), 2, - sym_extended_name, - sym_literal, - STATE(1935), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 3, - anon_sym_elif, - anon_sym_else, - sym_operator, - [67642] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2614), 1, - anon_sym_LPAREN, - ACTIONS(2618), 1, - sym_name_identifier, - ACTIONS(2620), 1, - sym_float_number_literal, - ACTIONS(2622), 1, - sym_number_literal, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - ACTIONS(2626), 1, - anon_sym_SQUOTE, - STATE(596), 1, - sym_scoped_statement, - STATE(1289), 1, - sym_name_expression, - STATE(1457), 1, - aux_sym_name_expression_repeat1, - STATE(1684), 1, - aux_sym_name_expression_repeat2, - STATE(2195), 1, - aux_sym_reference_expression_repeat1, - STATE(2447), 1, - sym_subexpression, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2616), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1873), 2, - sym_extended_name, - sym_literal, - STATE(1893), 2, - sym_string_literal, - sym_char_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67718] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1199), 1, - sym_float_number_literal, - ACTIONS(1201), 1, - sym_number_literal, - ACTIONS(1203), 1, - anon_sym_DQUOTE, - ACTIONS(1205), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_LBRACK, - ACTIONS(2712), 1, - anon_sym_LPAREN, - ACTIONS(2716), 1, - sym_name_identifier, - STATE(516), 1, - sym_name_expression, - STATE(596), 1, - sym_scoped_statement, - STATE(1431), 1, - aux_sym_name_expression_repeat1, - STATE(1495), 1, - sym_subexpression, - STATE(1818), 1, - aux_sym_name_expression_repeat2, - STATE(2235), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2714), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(798), 2, - sym_string_literal, - sym_char_literal, - STATE(813), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67794] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [67836] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, - sym_float_number_literal, - ACTIONS(2197), 1, - sym_number_literal, - ACTIONS(2199), 1, - anon_sym_DQUOTE, - ACTIONS(2201), 1, - anon_sym_SQUOTE, - ACTIONS(2347), 1, - anon_sym_LPAREN, - ACTIONS(2351), 1, - anon_sym_LBRACK, - STATE(596), 1, - sym_scoped_statement, - STATE(602), 1, - sym_subexpression, - STATE(781), 1, - sym_name_expression, - STATE(1416), 1, - aux_sym_name_expression_repeat1, - STATE(1670), 1, - aux_sym_name_expression_repeat2, - STATE(2203), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2349), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - STATE(1642), 2, - sym_extended_name, - sym_literal, - STATE(599), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67912] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1419), 1, - sym_float_number_literal, - ACTIONS(1421), 1, - sym_number_literal, - ACTIONS(1423), 1, - anon_sym_DQUOTE, - ACTIONS(1425), 1, - anon_sym_SQUOTE, - ACTIONS(2441), 1, - anon_sym_LBRACK, - ACTIONS(2670), 1, - anon_sym_LPAREN, - ACTIONS(2674), 1, - sym_name_identifier, - STATE(534), 1, - sym_name_expression, - STATE(631), 1, - sym_scoped_statement, - STATE(1399), 1, - aux_sym_name_expression_repeat1, - STATE(1488), 1, - sym_subexpression, - STATE(1730), 1, - aux_sym_name_expression_repeat2, - STATE(2199), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2672), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(807), 2, - sym_string_literal, - sym_char_literal, - STATE(835), 2, - sym_extended_name, - sym_literal, - STATE(627), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [67988] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(651), 1, - anon_sym_LPAREN, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - sym_name_identifier, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1326), 1, - sym_name_expression, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(2194), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(653), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [68064] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 18, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68104] = 22, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(57), 1, - anon_sym_LBRACK, - ACTIONS(1059), 1, - anon_sym_LPAREN, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - ACTIONS(2748), 1, - sym_name_identifier, - STATE(548), 1, - sym_name_expression, - STATE(607), 1, - sym_subexpression, - STATE(613), 1, - sym_scoped_statement, - STATE(1420), 1, - aux_sym_name_expression_repeat1, - STATE(1672), 1, - aux_sym_name_expression_repeat2, - STATE(2242), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1061), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1029), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(610), 5, - sym_subexpression_token, - sym_binary_operator_expression, - sym_reference_expression, - sym_function_call_expression, - sym_array_expression, - [68180] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68219] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68258] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68297] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 16, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68338] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68377] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68418] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68459] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 16, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68500] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 16, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68541] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68582] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68623] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68662] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68701] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68740] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68781] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68820] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68861] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68900] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68939] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [68978] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69017] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -82287,1276 +84776,11 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2067), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69058] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69097] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69136] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69175] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69214] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69253] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69292] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2067), 16, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69333] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69372] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2065), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, ACTIONS(2067), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69413] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69452] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69491] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69530] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69569] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69608] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69647] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69686] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69725] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69764] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69803] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69842] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69881] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69920] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [69961] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70002] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70041] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70080] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70121] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70160] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70199] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 17, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70238] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 16, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70279] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 17, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70318] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70359] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70398] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70437] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 17, anon_sym_const, anon_sym_var, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_DASH_GT, anon_sym_match, anon_sym_if, @@ -83571,13 +84795,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [70476] = 4, + [70423] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2063), 8, + ACTIONS(343), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -83586,7 +84810,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2019), 19, + ACTIONS(345), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -83600,19 +84824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [70515] = 4, + [70463] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 8, + ACTIONS(2057), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -83621,7 +84846,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2085), 19, + ACTIONS(2059), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -83635,19 +84860,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [70554] = 4, + [70503] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(333), 8, + ACTIONS(2129), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -83656,7 +84882,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2109), 19, + ACTIONS(2131), 20, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -83670,19 +84896,388 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [70593] = 4, + [70543] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2509), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + sym_name_identifier, + STATE(495), 1, + sym_name_expression, + STATE(737), 1, + sym_extended_name, + STATE(1600), 1, + sym_subexpression, + STATE(1951), 1, + aux_sym_name_expression_repeat1, + STATE(2264), 1, + aux_sym_name_expression_repeat2, + STATE(2388), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2511), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [70617] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(2489), 1, + anon_sym_LPAREN, + ACTIONS(2493), 1, + anon_sym_LBRACK, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + STATE(668), 1, + sym_subexpression, + STATE(939), 1, + sym_name_expression, + STATE(1661), 1, + sym_extended_name, + STATE(1987), 1, + aux_sym_name_expression_repeat1, + STATE(2283), 1, + aux_sym_name_expression_repeat2, + STATE(2357), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2491), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(677), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [70691] = 18, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(2762), 1, + anon_sym_match, + ACTIONS(2764), 1, + anon_sym_if, + ACTIONS(2766), 1, + anon_sym_do, + ACTIONS(2768), 1, + anon_sym_while, + ACTIONS(2770), 1, + anon_sym_for, + ACTIONS(2772), 1, + anon_sym_loop, + ACTIONS(2774), 1, + anon_sym_SEMI, + ACTIONS(2776), 1, + anon_sym_return, + ACTIONS(2920), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2758), 2, + anon_sym_const, + anon_sym_var, + ACTIONS(2778), 2, + anon_sym_break, + anon_sym_continue, + STATE(1105), 2, + sym_block_statement, + aux_sym_block_repeat1, + STATE(550), 3, + sym_block, + sym_return_expression, + sym_loop_control_expression, + STATE(1821), 3, + sym_variable_definition_statement, + sym_flow_control, + sym_prefixed_expression, + STATE(848), 6, + sym_match, + sym_condition, + sym_do_while_loop, + sym_while_loop, + sym_for_loop, + sym_loop_loop, + [70759] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2115), 1, + sym_name_identifier, + ACTIONS(2662), 1, + anon_sym_LBRACK, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + ACTIONS(2840), 1, + anon_sym_LPAREN, + STATE(756), 1, + sym_name_expression, + STATE(1515), 1, + sym_extended_name, + STATE(1971), 1, + aux_sym_name_expression_repeat1, + STATE(2311), 1, + aux_sym_name_expression_repeat2, + STATE(2365), 1, + sym_subexpression, + STATE(2391), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2842), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [70833] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2662), 1, + anon_sym_LBRACK, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + ACTIONS(2852), 1, + anon_sym_LPAREN, + ACTIONS(2856), 1, + sym_name_identifier, + STATE(188), 1, + sym_name_expression, + STATE(619), 1, + sym_subexpression, + STATE(778), 1, + sym_extended_name, + STATE(1981), 1, + aux_sym_name_expression_repeat1, + STATE(2302), 1, + aux_sym_name_expression_repeat2, + STATE(2331), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2854), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(605), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [70907] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2638), 1, + anon_sym_LBRACK, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(2804), 1, + anon_sym_LPAREN, + ACTIONS(2808), 1, + sym_name_identifier, + STATE(349), 1, + sym_name_expression, + STATE(644), 1, + sym_subexpression, + STATE(784), 1, + sym_extended_name, + STATE(1983), 1, + aux_sym_name_expression_repeat1, + STATE(2297), 1, + aux_sym_name_expression_repeat2, + STATE(2372), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2806), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(650), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [70981] = 21, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2463), 1, + anon_sym_LBRACK, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2846), 1, + anon_sym_LPAREN, + ACTIONS(2850), 1, + sym_name_identifier, + STATE(317), 1, + sym_name_expression, + STATE(850), 1, + sym_extended_name, + STATE(1536), 1, + sym_subexpression, + STATE(1972), 1, + aux_sym_name_expression_repeat1, + STATE(2314), 1, + aux_sym_name_expression_repeat2, + STATE(2404), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2848), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + STATE(569), 5, + sym_subexpression_token, + sym_binary_operator_expression, + sym_reference_expression, + sym_function_call_expression, + sym_array_expression, + [71055] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 10, + ACTIONS(343), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -83693,79 +85288,10 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 17, + ACTIONS(345), 18, anon_sym_const, anon_sym_var, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70632] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70671] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 17, - anon_sym_const, - anon_sym_var, anon_sym_match, anon_sym_if, anon_sym_elif, @@ -83781,402 +85307,49 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [70710] = 4, + [71095] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2105), 8, + ACTIONS(2057), 10, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2107), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70749] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70788] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70827] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, + ACTIONS(2059), 18, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, anon_sym_elif, anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [70866] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [70905] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(485), 1, - anon_sym_RPAREN, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - ACTIONS(2393), 1, - sym_name_identifier, - ACTIONS(2750), 1, - anon_sym_LPAREN, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(1923), 1, - sym_type_subexpression, - STATE(1936), 1, - sym_subexpression_token, - STATE(2338), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 2, - anon_sym_PIPE, - sym_operator, - ACTIONS(2752), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2754), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1258), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(2001), 2, - sym_scoped_statement, - sym_name_expression, - [70980] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [71019] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [71060] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(509), 1, - anon_sym_RPAREN, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - ACTIONS(2393), 1, - sym_name_identifier, - ACTIONS(2750), 1, - anon_sym_LPAREN, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(1923), 1, - sym_type_subexpression, - STATE(1936), 1, - sym_subexpression_token, - STATE(2338), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(511), 2, - anon_sym_PIPE, - sym_operator, - ACTIONS(2752), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2754), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1264), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(2001), 2, - sym_scoped_statement, - sym_name_expression, [71135] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2087), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 19, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [71174] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 10, + ACTIONS(2085), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -84187,10 +85360,48 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 16, + ACTIONS(2087), 18, anon_sym_const, anon_sym_var, - anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71175] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_match, anon_sym_if, anon_sym_do, @@ -84205,6 +85416,273 @@ static const uint16_t ts_small_parse_table[] = { sym_number_literal, anon_sym_SQUOTE, [71215] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 18, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71255] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71297] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71336] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71377] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71416] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(2922), 1, + anon_sym_LPAREN, + ACTIONS(2928), 1, + sym_float_number_literal, + ACTIONS(2930), 1, + sym_number_literal, + ACTIONS(2932), 1, + anon_sym_DQUOTE, + ACTIONS(2934), 1, + anon_sym_SQUOTE, + STATE(1839), 1, + sym_extended_name, + STATE(1856), 1, + sym_name_expression, + STATE(1861), 1, + sym_type_subexpression, + STATE(1930), 1, + sym_subexpression_token, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2526), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_do, + sym_operator, + ACTIONS(2924), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2926), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1306), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1919), 2, + sym_string_literal, + sym_char_literal, + STATE(1918), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [71491] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71530] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -84234,213 +85712,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_DASH_GT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [71254] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2756), 1, - anon_sym_LPAREN, - ACTIONS(2762), 1, - sym_name_identifier, - ACTIONS(2768), 1, - sym_float_number_literal, - ACTIONS(2771), 1, - sym_number_literal, - ACTIONS(2774), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_SQUOTE, - STATE(1450), 1, - aux_sym_name_expression_repeat1, - STATE(1727), 1, - aux_sym_name_expression_repeat2, - STATE(1897), 1, - sym_type_subexpression, - STATE(1990), 1, - sym_subexpression_token, - STATE(2365), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2759), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2765), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1262), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1894), 2, - sym_extended_name, - sym_literal, - STATE(1931), 2, - sym_string_literal, - sym_char_literal, - STATE(1972), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 3, - anon_sym_AMP, - anon_sym_do, - sym_operator, - [71327] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2648), 1, - sym_float_number_literal, - ACTIONS(2650), 1, - sym_number_literal, - ACTIONS(2652), 1, - anon_sym_DQUOTE, - ACTIONS(2654), 1, - anon_sym_SQUOTE, - ACTIONS(2780), 1, - anon_sym_LPAREN, - ACTIONS(2784), 1, - sym_name_identifier, - STATE(1464), 1, - aux_sym_name_expression_repeat1, - STATE(1735), 1, - aux_sym_name_expression_repeat2, - STATE(1849), 1, - sym_type_subexpression, - STATE(1975), 1, - sym_subexpression_token, - STATE(2386), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2782), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2786), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1269), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1850), 2, - sym_extended_name, - sym_literal, - STATE(1854), 2, - sym_string_literal, - sym_char_literal, - STATE(2006), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 3, - anon_sym_AMP, - anon_sym_with, - sym_operator, - [71400] = 22, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(385), 1, - anon_sym_RPAREN, - ACTIONS(2788), 1, - anon_sym_LPAREN, - ACTIONS(2794), 1, - sym_name_identifier, - ACTIONS(2800), 1, - sym_float_number_literal, - ACTIONS(2803), 1, - sym_number_literal, - ACTIONS(2806), 1, - anon_sym_DQUOTE, - ACTIONS(2809), 1, - anon_sym_SQUOTE, - STATE(1429), 1, - aux_sym_name_expression_repeat1, - STATE(1683), 1, - aux_sym_name_expression_repeat2, - STATE(1923), 1, - sym_type_subexpression, - STATE(1936), 1, - sym_subexpression_token, - STATE(2338), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(387), 2, - anon_sym_PIPE, - sym_operator, - ACTIONS(2791), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2797), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1264), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - STATE(1932), 2, - sym_extended_name, - sym_literal, - STATE(2001), 2, - sym_scoped_statement, - sym_name_expression, - [71475] = 4, + [71569] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2063), 8, + ACTIONS(2065), 10, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2019), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, + ACTIONS(2067), 17, + anon_sym_const, + anon_sym_var, anon_sym_AMP, - anon_sym_DOT, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [71514] = 5, + [71608] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(407), 1, + anon_sym_RPAREN, + ACTIONS(2455), 1, + sym_name_identifier, + ACTIONS(2740), 1, + anon_sym_LPAREN, + ACTIONS(2746), 1, + sym_float_number_literal, + ACTIONS(2748), 1, + sym_number_literal, + ACTIONS(2750), 1, + anon_sym_DQUOTE, + ACTIONS(2752), 1, + anon_sym_SQUOTE, + STATE(1761), 1, + sym_extended_name, + STATE(1784), 1, + sym_name_expression, + STATE(1830), 1, + sym_type_subexpression, + STATE(1868), 1, + sym_subexpression_token, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2491), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(409), 2, + anon_sym_PIPE, + sym_operator, + ACTIONS(2742), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2744), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1304), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1902), 2, + sym_string_literal, + sym_char_literal, + STATE(1900), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [71683] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 17, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71722] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 17, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71761] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, ACTIONS(2065), 8, - anon_sym_RBRACE, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -84448,8 +85890,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2067), 18, + ACTIONS(2067), 19, anon_sym_namespace, + anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -84467,152 +85910,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [71555] = 4, + [71800] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [71594] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2401), 1, - sym_float_number_literal, - ACTIONS(2403), 1, - sym_number_literal, - ACTIONS(2405), 1, - anon_sym_DQUOTE, - ACTIONS(2407), 1, - anon_sym_SQUOTE, - ACTIONS(2812), 1, - anon_sym_LPAREN, - ACTIONS(2816), 1, - sym_name_identifier, - STATE(1450), 1, - aux_sym_name_expression_repeat1, - STATE(1727), 1, - aux_sym_name_expression_repeat2, - STATE(1897), 1, - sym_type_subexpression, - STATE(1990), 1, - sym_subexpression_token, - STATE(2365), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2814), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2818), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1262), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1894), 2, - sym_extended_name, - sym_literal, - STATE(1931), 2, - sym_string_literal, - sym_char_literal, - STATE(1972), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 3, - anon_sym_AMP, - anon_sym_do, - sym_operator, - [71667] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2648), 1, - sym_float_number_literal, - ACTIONS(2650), 1, - sym_number_literal, - ACTIONS(2652), 1, - anon_sym_DQUOTE, - ACTIONS(2654), 1, - anon_sym_SQUOTE, - ACTIONS(2780), 1, - anon_sym_LPAREN, - ACTIONS(2784), 1, - sym_name_identifier, - STATE(1464), 1, - aux_sym_name_expression_repeat1, - STATE(1735), 1, - aux_sym_name_expression_repeat2, - STATE(1849), 1, - sym_type_subexpression, - STATE(1975), 1, - sym_subexpression_token, - STATE(2386), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2782), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2786), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1272), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1850), 2, - sym_extended_name, - sym_literal, - STATE(1854), 2, - sym_string_literal, - sym_char_literal, - STATE(2006), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 3, - anon_sym_AMP, - anon_sym_with, - sym_operator, - [71740] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 10, + ACTIONS(2069), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -84623,7 +85927,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(487), 17, + ACTIONS(2071), 17, anon_sym_const, anon_sym_var, anon_sym_AMP, @@ -84641,15 +85945,154 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [71779] = 5, + [71839] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, + ACTIONS(2936), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2015), 10, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71880] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71919] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71958] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [71997] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -84660,9 +86103,45 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 16, + ACTIONS(2023), 17, anon_sym_const, anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72036] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 17, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, anon_sym_PIPE, anon_sym_match, anon_sym_if, @@ -84677,488 +86156,100 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [71820] = 21, + [72075] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2820), 1, - anon_sym_LPAREN, - ACTIONS(2826), 1, - sym_name_identifier, - ACTIONS(2832), 1, - sym_float_number_literal, - ACTIONS(2835), 1, - sym_number_literal, - ACTIONS(2838), 1, - anon_sym_DQUOTE, - ACTIONS(2841), 1, - anon_sym_SQUOTE, - STATE(1464), 1, - aux_sym_name_expression_repeat1, - STATE(1735), 1, - aux_sym_name_expression_repeat2, - STATE(1849), 1, - sym_type_subexpression, - STATE(1975), 1, - sym_subexpression_token, - STATE(2386), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2823), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2829), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1272), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1850), 2, - sym_extended_name, - sym_literal, - STATE(1854), 2, - sym_string_literal, - sym_char_literal, - STATE(2006), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 3, - anon_sym_AMP, - anon_sym_with, - sym_operator, - [71893] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2401), 1, - sym_float_number_literal, - ACTIONS(2403), 1, - sym_number_literal, - ACTIONS(2405), 1, - anon_sym_DQUOTE, - ACTIONS(2407), 1, - anon_sym_SQUOTE, - ACTIONS(2812), 1, + ACTIONS(2057), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2816), 1, - sym_name_identifier, - STATE(1450), 1, - aux_sym_name_expression_repeat1, - STATE(1727), 1, - aux_sym_name_expression_repeat2, - STATE(1897), 1, - sym_type_subexpression, - STATE(1990), 1, - sym_subexpression_token, - STATE(2365), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2814), 2, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2818), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1268), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1894), 2, - sym_extended_name, - sym_literal, - STATE(1931), 2, - sym_string_literal, - sym_char_literal, - STATE(1972), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 3, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 17, + anon_sym_const, + anon_sym_var, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, anon_sym_do, - sym_operator, - [71966] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72005] = 4, + [72114] = 21, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, + ACTIONS(2904), 1, anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, + ACTIONS(2908), 1, sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [72044] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, + ACTIONS(2912), 1, sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, + ACTIONS(2914), 1, sym_number_literal, - anon_sym_SQUOTE, - [72083] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, + ACTIONS(2916), 1, anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, + ACTIONS(2918), 1, anon_sym_SQUOTE, - [72124] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [72165] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [72206] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [72245] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [72286] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 19, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [72325] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2844), 1, - anon_sym_LPAREN, - ACTIONS(2850), 1, - sym_name_identifier, - ACTIONS(2856), 1, - sym_float_number_literal, - ACTIONS(2859), 1, - sym_number_literal, - ACTIONS(2862), 1, - anon_sym_DQUOTE, - ACTIONS(2865), 1, - anon_sym_SQUOTE, - STATE(1457), 1, - aux_sym_name_expression_repeat1, - STATE(1684), 1, - aux_sym_name_expression_repeat2, - STATE(1875), 1, + STATE(1753), 1, + sym_extended_name, + STATE(1799), 1, sym_type_subexpression, - STATE(1984), 1, + STATE(1819), 1, + sym_name_expression, + STATE(1893), 1, sym_subexpression_token, - STATE(2378), 1, + STATE(2015), 1, + aux_sym_name_expression_repeat1, + STATE(2183), 1, + aux_sym_name_expression_repeat2, + STATE(2486), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2847), 2, + ACTIONS(2906), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2853), 2, + ACTIONS(2910), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1283), 2, + STATE(1229), 2, sym_function_argument, aux_sym_function_call_expression_repeat1, - STATE(1873), 2, - sym_extended_name, - sym_literal, - STATE(1893), 2, + STATE(1882), 2, sym_string_literal, sym_char_literal, - STATE(2008), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 3, + ACTIONS(409), 3, anon_sym_AMP, - anon_sym_while, + anon_sym_then, sym_operator, - [72398] = 4, + STATE(1881), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [72187] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2077), 8, + ACTIONS(343), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -85167,7 +86258,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2079), 19, + ACTIONS(345), 19, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -85182,12 +86273,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_DOT, + anon_sym_PIPE, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72437] = 4, + [72226] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72265] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -85217,70 +86343,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, - anon_sym_DOT, + anon_sym_PIPE, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72476] = 21, + [72304] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2359), 1, - sym_float_number_literal, - ACTIONS(2361), 1, - sym_number_literal, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(2365), 1, - anon_sym_SQUOTE, - ACTIONS(2868), 1, - anon_sym_LPAREN, - ACTIONS(2872), 1, - sym_name_identifier, - STATE(1460), 1, - aux_sym_name_expression_repeat1, - STATE(1705), 1, - aux_sym_name_expression_repeat2, - STATE(1863), 1, - sym_type_subexpression, - STATE(1978), 1, - sym_subexpression_token, - STATE(2388), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2870), 2, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2874), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1295), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1861), 2, - sym_extended_name, - sym_literal, - STATE(1872), 2, - sym_string_literal, - sym_char_literal, - STATE(1994), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 3, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_AMP, - anon_sym_then, + anon_sym_PIPE, + sym_name_identifier, sym_operator, - [72549] = 4, + sym_number_literal, + anon_sym_SQUOTE, + [72343] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(485), 10, + ACTIONS(2013), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -85291,7 +86400,1235 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(487), 17, + ACTIONS(2015), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72382] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2938), 1, + anon_sym_LPAREN, + ACTIONS(2944), 1, + sym_name_identifier, + ACTIONS(2950), 1, + sym_float_number_literal, + ACTIONS(2953), 1, + sym_number_literal, + ACTIONS(2956), 1, + anon_sym_DQUOTE, + ACTIONS(2959), 1, + anon_sym_SQUOTE, + STATE(1753), 1, + sym_extended_name, + STATE(1799), 1, + sym_type_subexpression, + STATE(1819), 1, + sym_name_expression, + STATE(1893), 1, + sym_subexpression_token, + STATE(2015), 1, + aux_sym_name_expression_repeat1, + STATE(2183), 1, + aux_sym_name_expression_repeat2, + STATE(2486), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2941), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2947), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1229), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1882), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(413), 3, + anon_sym_AMP, + anon_sym_then, + sym_operator, + STATE(1881), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [72455] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72494] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 17, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72533] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72572] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72611] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2886), 1, + anon_sym_LPAREN, + ACTIONS(2890), 1, + sym_name_identifier, + ACTIONS(2894), 1, + sym_float_number_literal, + ACTIONS(2896), 1, + sym_number_literal, + ACTIONS(2898), 1, + anon_sym_DQUOTE, + ACTIONS(2900), 1, + anon_sym_SQUOTE, + STATE(1721), 1, + sym_extended_name, + STATE(1803), 1, + sym_type_subexpression, + STATE(1823), 1, + sym_name_expression, + STATE(1892), 1, + sym_subexpression_token, + STATE(1942), 1, + aux_sym_name_expression_repeat1, + STATE(2194), 1, + aux_sym_name_expression_repeat2, + STATE(2493), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2888), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2892), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1237), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1874), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(409), 3, + anon_sym_AMP, + anon_sym_while, + sym_operator, + STATE(1873), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [72684] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 16, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72725] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72764] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2962), 1, + anon_sym_LPAREN, + ACTIONS(2968), 1, + sym_name_identifier, + ACTIONS(2974), 1, + sym_float_number_literal, + ACTIONS(2977), 1, + sym_number_literal, + ACTIONS(2980), 1, + anon_sym_DQUOTE, + ACTIONS(2983), 1, + anon_sym_SQUOTE, + STATE(1721), 1, + sym_extended_name, + STATE(1803), 1, + sym_type_subexpression, + STATE(1823), 1, + sym_name_expression, + STATE(1892), 1, + sym_subexpression_token, + STATE(1942), 1, + aux_sym_name_expression_repeat1, + STATE(2194), 1, + aux_sym_name_expression_repeat2, + STATE(2493), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2965), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2971), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1237), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1874), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(413), 3, + anon_sym_AMP, + anon_sym_while, + sym_operator, + STATE(1873), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [72837] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 17, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72876] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 18, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [72917] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2992), 1, + sym_float_number_literal, + ACTIONS(2994), 1, + sym_number_literal, + ACTIONS(2996), 1, + anon_sym_DQUOTE, + ACTIONS(2998), 1, + anon_sym_SQUOTE, + STATE(1817), 1, + sym_extended_name, + STATE(1878), 1, + sym_type_subexpression, + STATE(1879), 1, + sym_name_expression, + STATE(1935), 1, + sym_subexpression_token, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2495), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_while, + sym_operator, + ACTIONS(2988), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2990), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1324), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1925), 2, + sym_string_literal, + sym_char_literal, + STATE(1938), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [72992] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73031] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73070] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3000), 1, + anon_sym_LPAREN, + ACTIONS(3006), 1, + sym_name_identifier, + ACTIONS(3012), 1, + sym_float_number_literal, + ACTIONS(3015), 1, + sym_number_literal, + ACTIONS(3018), 1, + anon_sym_DQUOTE, + ACTIONS(3021), 1, + anon_sym_SQUOTE, + STATE(1749), 1, + sym_extended_name, + STATE(1795), 1, + sym_type_subexpression, + STATE(1807), 1, + sym_name_expression, + STATE(1897), 1, + sym_subexpression_token, + STATE(1968), 1, + aux_sym_name_expression_repeat1, + STATE(2303), 1, + aux_sym_name_expression_repeat2, + STATE(2533), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3003), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3009), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1243), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1889), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(413), 3, + anon_sym_AMP, + anon_sym_with, + sym_operator, + STATE(1888), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [73143] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(719), 1, + anon_sym_COLON, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3030), 1, + sym_float_number_literal, + ACTIONS(3032), 1, + sym_number_literal, + ACTIONS(3034), 1, + anon_sym_DQUOTE, + ACTIONS(3036), 1, + anon_sym_SQUOTE, + STATE(1831), 1, + sym_extended_name, + STATE(1898), 1, + sym_type_subexpression, + STATE(1901), 1, + sym_name_expression, + STATE(1912), 1, + sym_subexpression_token, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2541), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_then, + sym_operator, + ACTIONS(3026), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3028), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1329), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1931), 2, + sym_string_literal, + sym_char_literal, + STATE(1934), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [73218] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73259] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73298] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73337] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73376] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73415] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2780), 1, + anon_sym_LPAREN, + ACTIONS(2784), 1, + sym_name_identifier, + ACTIONS(2788), 1, + sym_float_number_literal, + ACTIONS(2790), 1, + sym_number_literal, + ACTIONS(2792), 1, + anon_sym_DQUOTE, + ACTIONS(2794), 1, + anon_sym_SQUOTE, + STATE(1749), 1, + sym_extended_name, + STATE(1795), 1, + sym_type_subexpression, + STATE(1807), 1, + sym_name_expression, + STATE(1897), 1, + sym_subexpression_token, + STATE(1968), 1, + aux_sym_name_expression_repeat1, + STATE(2303), 1, + aux_sym_name_expression_repeat2, + STATE(2533), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2782), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2786), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1243), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1889), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(409), 3, + anon_sym_AMP, + anon_sym_with, + sym_operator, + STATE(1888), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [73488] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73527] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73566] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73605] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73644] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73683] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3038), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73724] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(3040), 1, + anon_sym_COLON, + ACTIONS(3042), 1, + anon_sym_LPAREN, + ACTIONS(3048), 1, + sym_float_number_literal, + ACTIONS(3050), 1, + sym_number_literal, + ACTIONS(3052), 1, + anon_sym_DQUOTE, + ACTIONS(3054), 1, + anon_sym_SQUOTE, + STATE(1818), 1, + sym_extended_name, + STATE(1891), 1, + sym_name_expression, + STATE(1894), 1, + sym_type_subexpression, + STATE(1908), 1, + sym_subexpression_token, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_with, + sym_operator, + ACTIONS(3044), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3046), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1356), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1907), 2, + sym_string_literal, + sym_char_literal, + STATE(1939), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [73799] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 17, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73838] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 17, anon_sym_const, anon_sym_var, anon_sym_match, @@ -85309,120 +87646,14 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72588] = 21, + [73877] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2620), 1, - sym_float_number_literal, - ACTIONS(2622), 1, - sym_number_literal, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - ACTIONS(2626), 1, - anon_sym_SQUOTE, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - sym_name_identifier, - STATE(1457), 1, - aux_sym_name_expression_repeat1, - STATE(1684), 1, - aux_sym_name_expression_repeat2, - STATE(1875), 1, - sym_type_subexpression, - STATE(1984), 1, - sym_subexpression_token, - STATE(2378), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2878), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2882), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1283), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1873), 2, - sym_extended_name, - sym_literal, - STATE(1893), 2, - sym_string_literal, - sym_char_literal, - STATE(2008), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 3, - anon_sym_AMP, - anon_sym_while, - sym_operator, - [72661] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2620), 1, - sym_float_number_literal, - ACTIONS(2622), 1, - sym_number_literal, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - ACTIONS(2626), 1, - anon_sym_SQUOTE, - ACTIONS(2876), 1, - anon_sym_LPAREN, - ACTIONS(2880), 1, - sym_name_identifier, - STATE(1457), 1, - aux_sym_name_expression_repeat1, - STATE(1684), 1, - aux_sym_name_expression_repeat2, - STATE(1875), 1, - sym_type_subexpression, - STATE(1984), 1, - sym_subexpression_token, - STATE(2378), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2878), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2882), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1288), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1873), 2, - sym_extended_name, - sym_literal, - STATE(1893), 2, - sym_string_literal, - sym_char_literal, - STATE(2008), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(487), 3, - anon_sym_AMP, - anon_sym_while, - sym_operator, - [72734] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, + ACTIONS(343), 8, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -85430,8 +87661,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2103), 18, + ACTIONS(345), 19, anon_sym_namespace, + anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -85449,15 +87681,205 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72775] = 5, + [73916] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 8, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [73955] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2816), 1, + anon_sym_LPAREN, + ACTIONS(2820), 1, + sym_name_identifier, + ACTIONS(2824), 1, + sym_float_number_literal, + ACTIONS(2826), 1, + sym_number_literal, + ACTIONS(2828), 1, + anon_sym_DQUOTE, + ACTIONS(2830), 1, + anon_sym_SQUOTE, + STATE(1708), 1, + sym_extended_name, + STATE(1775), 1, + sym_name_expression, + STATE(1808), 1, + sym_type_subexpression, + STATE(1890), 1, + sym_subexpression_token, + STATE(1947), 1, + aux_sym_name_expression_repeat1, + STATE(2205), 1, + aux_sym_name_expression_repeat2, + STATE(2518), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2818), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2822), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1273), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1867), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(409), 3, + anon_sym_AMP, + anon_sym_do, + sym_operator, + STATE(1866), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [74028] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74067] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74106] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74145] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -85466,7 +87888,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 18, + ACTIONS(2131), 19, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -85481,70 +87903,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_AMP, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74184] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74225] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72816] = 21, + [74264] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2884), 1, - anon_sym_LPAREN, - ACTIONS(2890), 1, - sym_name_identifier, - ACTIONS(2896), 1, - sym_float_number_literal, - ACTIONS(2899), 1, - sym_number_literal, - ACTIONS(2902), 1, - anon_sym_DQUOTE, - ACTIONS(2905), 1, - anon_sym_SQUOTE, - STATE(1460), 1, - aux_sym_name_expression_repeat1, - STATE(1705), 1, - aux_sym_name_expression_repeat2, - STATE(1863), 1, - sym_type_subexpression, - STATE(1978), 1, - sym_subexpression_token, - STATE(2388), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2887), 2, + ACTIONS(2069), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2893), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1292), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1861), 2, - sym_extended_name, - sym_literal, - STATE(1872), 2, - sym_string_literal, - sym_char_literal, - STATE(1994), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(387), 3, - anon_sym_AMP, - anon_sym_then, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, sym_operator, - [72889] = 5, + sym_number_literal, + anon_sym_SQUOTE, + [74303] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(1997), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 16, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74344] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74383] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74422] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3056), 1, + anon_sym_LPAREN, + ACTIONS(3062), 1, + sym_name_identifier, + ACTIONS(3068), 1, + sym_float_number_literal, + ACTIONS(3071), 1, + sym_number_literal, + ACTIONS(3074), 1, + anon_sym_DQUOTE, + ACTIONS(3077), 1, + anon_sym_SQUOTE, + STATE(1708), 1, + sym_extended_name, + STATE(1775), 1, + sym_name_expression, + STATE(1808), 1, + sym_type_subexpression, + STATE(1890), 1, + sym_subexpression_token, + STATE(1947), 1, + aux_sym_name_expression_repeat1, + STATE(2205), 1, + aux_sym_name_expression_repeat2, + STATE(2518), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3059), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3065), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1273), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1867), 2, + sym_string_literal, + sym_char_literal, + ACTIONS(413), 3, + anon_sym_AMP, + anon_sym_do, + sym_operator, + STATE(1866), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [74495] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74534] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74573] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74612] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74651] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74690] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, ACTIONS(2057), 8, anon_sym_RBRACE, anon_sym_LPAREN, @@ -85554,7 +88362,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 18, + ACTIONS(2059), 19, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -85568,20 +88376,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, + anon_sym_elif, + anon_sym_else, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72930] = 5, + [74729] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2057), 8, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74768] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3080), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74809] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -85590,7 +88468,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 18, + ACTIONS(2131), 19, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -85604,71 +88482,899 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74848] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3082), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74889] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74930] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [74969] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 18, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75010] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75049] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75088] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75127] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 19, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75166] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3084), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75207] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75248] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75287] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75326] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 17, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75365] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_AMP, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [72971] = 21, + [75404] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2359), 1, - sym_float_number_literal, - ACTIONS(2361), 1, - sym_number_literal, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(2365), 1, - anon_sym_SQUOTE, - ACTIONS(2868), 1, - anon_sym_LPAREN, - ACTIONS(2872), 1, - sym_name_identifier, - STATE(1460), 1, - aux_sym_name_expression_repeat1, - STATE(1705), 1, - aux_sym_name_expression_repeat2, - STATE(1863), 1, - sym_type_subexpression, - STATE(1978), 1, - sym_subexpression_token, - STATE(2388), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2870), 2, + ACTIONS(1991), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, - ACTIONS(2874), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1292), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1861), 2, - sym_extended_name, - sym_literal, - STATE(1872), 2, - sym_string_literal, - sym_char_literal, - STATE(1994), 2, - sym_scoped_statement, - sym_name_expression, - ACTIONS(511), 3, - anon_sym_AMP, - anon_sym_then, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 18, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, sym_operator, - [73044] = 5, + sym_number_literal, + anon_sym_SQUOTE, + [75445] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(2045), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 16, + anon_sym_const, + anon_sym_var, + anon_sym_COLON, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75486] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 19, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75525] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75564] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 19, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75603] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 17, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75642] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75681] = 22, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(411), 1, + anon_sym_RPAREN, + ACTIONS(3086), 1, + anon_sym_LPAREN, + ACTIONS(3092), 1, + sym_name_identifier, + ACTIONS(3098), 1, + sym_float_number_literal, + ACTIONS(3101), 1, + sym_number_literal, + ACTIONS(3104), 1, + anon_sym_DQUOTE, + ACTIONS(3107), 1, + anon_sym_SQUOTE, + STATE(1761), 1, + sym_extended_name, + STATE(1784), 1, + sym_name_expression, + STATE(1830), 1, + sym_type_subexpression, + STATE(1868), 1, + sym_subexpression_token, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2491), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(413), 2, + anon_sym_PIPE, + sym_operator, + ACTIONS(3089), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3095), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1304), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1902), 2, + sym_string_literal, + sym_char_literal, + STATE(1900), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [75756] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 17, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75795] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(635), 1, + sym_name_identifier, + ACTIONS(2922), 1, + anon_sym_LPAREN, + ACTIONS(2928), 1, + sym_float_number_literal, + ACTIONS(2930), 1, + sym_number_literal, + ACTIONS(2932), 1, + anon_sym_DQUOTE, + ACTIONS(2934), 1, + anon_sym_SQUOTE, + STATE(1839), 1, + sym_extended_name, + STATE(1856), 1, + sym_name_expression, + STATE(1861), 1, + sym_type_subexpression, + STATE(1930), 1, + sym_subexpression_token, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2526), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(409), 2, + anon_sym_do, + sym_operator, + ACTIONS(2924), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2926), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1345), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1919), 2, + sym_string_literal, + sym_char_literal, + STATE(1918), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [75867] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, ACTIONS(2065), 8, anon_sym_RBRACE, anon_sym_LPAREN, @@ -85697,7 +89403,1047 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73085] = 4, + [75905] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75943] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [75981] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76019] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76057] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76095] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 15, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76135] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76173] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76213] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76251] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76289] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76327] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76365] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76403] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76441] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3110), 1, + anon_sym_LPAREN, + ACTIONS(3116), 1, + sym_name_identifier, + ACTIONS(3122), 1, + sym_float_number_literal, + ACTIONS(3125), 1, + sym_number_literal, + ACTIONS(3128), 1, + anon_sym_DQUOTE, + ACTIONS(3131), 1, + anon_sym_SQUOTE, + STATE(1817), 1, + sym_extended_name, + STATE(1878), 1, + sym_type_subexpression, + STATE(1879), 1, + sym_name_expression, + STATE(1935), 1, + sym_subexpression_token, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2495), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(413), 2, + anon_sym_while, + sym_operator, + ACTIONS(3113), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3119), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1322), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1925), 2, + sym_string_literal, + sym_char_literal, + STATE(1938), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [76513] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 16, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76551] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(677), 1, + sym_name_identifier, + ACTIONS(2986), 1, + anon_sym_LPAREN, + ACTIONS(2992), 1, + sym_float_number_literal, + ACTIONS(2994), 1, + sym_number_literal, + ACTIONS(2996), 1, + anon_sym_DQUOTE, + ACTIONS(2998), 1, + anon_sym_SQUOTE, + STATE(1817), 1, + sym_extended_name, + STATE(1878), 1, + sym_type_subexpression, + STATE(1879), 1, + sym_name_expression, + STATE(1935), 1, + sym_subexpression_token, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2495), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(409), 2, + anon_sym_while, + sym_operator, + ACTIONS(2988), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(2990), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1322), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1925), 2, + sym_string_literal, + sym_char_literal, + STATE(1938), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [76623] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 16, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76661] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3134), 1, + anon_sym_LPAREN, + ACTIONS(3140), 1, + sym_name_identifier, + ACTIONS(3146), 1, + sym_float_number_literal, + ACTIONS(3149), 1, + sym_number_literal, + ACTIONS(3152), 1, + anon_sym_DQUOTE, + ACTIONS(3155), 1, + anon_sym_SQUOTE, + STATE(1831), 1, + sym_extended_name, + STATE(1898), 1, + sym_type_subexpression, + STATE(1901), 1, + sym_name_expression, + STATE(1912), 1, + sym_subexpression_token, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2541), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(413), 2, + anon_sym_then, + sym_operator, + ACTIONS(3137), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3143), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1326), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1931), 2, + sym_string_literal, + sym_char_literal, + STATE(1934), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [76733] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76771] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76809] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(895), 1, + sym_name_identifier, + ACTIONS(3024), 1, + anon_sym_LPAREN, + ACTIONS(3030), 1, + sym_float_number_literal, + ACTIONS(3032), 1, + sym_number_literal, + ACTIONS(3034), 1, + anon_sym_DQUOTE, + ACTIONS(3036), 1, + anon_sym_SQUOTE, + STATE(1831), 1, + sym_extended_name, + STATE(1898), 1, + sym_type_subexpression, + STATE(1901), 1, + sym_name_expression, + STATE(1912), 1, + sym_subexpression_token, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2541), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(409), 2, + anon_sym_then, + sym_operator, + ACTIONS(3026), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3028), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1326), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1931), 2, + sym_string_literal, + sym_char_literal, + STATE(1934), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [76881] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76919] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76957] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [76995] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [77033] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3158), 1, + anon_sym_LPAREN, + ACTIONS(3164), 1, + sym_name_identifier, + ACTIONS(3170), 1, + sym_float_number_literal, + ACTIONS(3173), 1, + sym_number_literal, + ACTIONS(3176), 1, + anon_sym_DQUOTE, + ACTIONS(3179), 1, + anon_sym_SQUOTE, + STATE(1818), 1, + sym_extended_name, + STATE(1891), 1, + sym_name_expression, + STATE(1894), 1, + sym_type_subexpression, + STATE(1908), 1, + sym_subexpression_token, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(413), 2, + anon_sym_with, + sym_operator, + ACTIONS(3161), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3167), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1334), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1907), 2, + sym_string_literal, + sym_char_literal, + STATE(1939), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [77105] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3182), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [77145] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -85726,46 +90472,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_DOT, + anon_sym_AMP, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73123] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 16, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [73161] = 4, + [77183] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -85794,18 +90506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_DOT, + anon_sym_AMP, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73199] = 4, + [77221] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 8, + ACTIONS(2085), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -85814,7 +90526,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 18, + ACTIONS(2087), 18, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -85833,407 +90545,83 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73237] = 4, + [77259] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(313), 8, + ACTIONS(343), 10, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2081), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, + ACTIONS(345), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73275] = 4, + [77297] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(3184), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2087), 8, + ACTIONS(343), 10, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2089), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, + ACTIONS(345), 15, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73313] = 4, + [77337] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2105), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [73351] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [73389] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - ACTIONS(2908), 1, - anon_sym_LPAREN, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(1948), 1, - sym_type_subexpression, - STATE(2012), 1, - sym_subexpression_token, - STATE(2376), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(511), 2, - anon_sym_with, - sym_operator, - ACTIONS(2910), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2912), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1307), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(2021), 2, - sym_scoped_statement, - sym_name_expression, - [73461] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [73499] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2914), 1, - anon_sym_LPAREN, - ACTIONS(2920), 1, - sym_name_identifier, - ACTIONS(2926), 1, - sym_float_number_literal, - ACTIONS(2929), 1, - sym_number_literal, - ACTIONS(2932), 1, - anon_sym_DQUOTE, - ACTIONS(2935), 1, - anon_sym_SQUOTE, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(1948), 1, - sym_type_subexpression, - STATE(2012), 1, - sym_subexpression_token, - STATE(2376), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(387), 2, - anon_sym_with, - sym_operator, - ACTIONS(2917), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2923), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1307), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(2021), 2, - sym_scoped_statement, - sym_name_expression, - [73571] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [73609] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 18, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [73647] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(639), 1, - sym_name_identifier, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - ACTIONS(2908), 1, - anon_sym_LPAREN, - STATE(1437), 1, - aux_sym_name_expression_repeat1, - STATE(1682), 1, - aux_sym_name_expression_repeat2, - STATE(1948), 1, - sym_type_subexpression, - STATE(2012), 1, - sym_subexpression_token, - STATE(2376), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 2, - anon_sym_with, - sym_operator, - ACTIONS(2910), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2912), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1305), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1956), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - STATE(2021), 2, - sym_scoped_statement, - sym_name_expression, - [73719] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, ACTIONS(2065), 8, - anon_sym_RBRACE, + ts_builtin_sym_end, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -86241,8 +90629,9 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2067), 17, + ACTIONS(2067), 18, anon_sym_namespace, + anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -86259,79 +90648,78 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73759] = 5, + [77375] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2015), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(343), 8, + ts_builtin_sym_end, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2017), 15, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, + ACTIONS(345), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [73799] = 16, + [77413] = 16, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(7), 1, - anon_sym_namespace, - ACTIONS(9), 1, - anon_sym_partition, - ACTIONS(11), 1, - anon_sym_use, - ACTIONS(13), 1, - anon_sym_import, - ACTIONS(17), 1, - anon_sym_type, - ACTIONS(19), 1, - anon_sym_decl, - ACTIONS(21), 1, - anon_sym_def, - ACTIONS(27), 1, - anon_sym_typeclass, - ACTIONS(2938), 1, + ACTIONS(3186), 1, ts_builtin_sym_end, + ACTIONS(3188), 1, + anon_sym_namespace, + ACTIONS(3191), 1, + anon_sym_partition, + ACTIONS(3194), 1, + anon_sym_use, + ACTIONS(3197), 1, + anon_sym_import, + ACTIONS(3203), 1, + anon_sym_type, + ACTIONS(3206), 1, + anon_sym_decl, + ACTIONS(3209), 1, + anon_sym_def, + ACTIONS(3218), 1, + anon_sym_typeclass, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(15), 2, + ACTIONS(3200), 2, anon_sym_alias, anon_sym_let, - ACTIONS(23), 2, + ACTIONS(3212), 2, anon_sym_struct, anon_sym_class, - ACTIONS(25), 2, + ACTIONS(3215), 2, anon_sym_basic, anon_sym_abstract, - STATE(1319), 3, + STATE(1343), 3, sym_source_statement, sym_partition, aux_sym_source_file_repeat1, - STATE(1580), 8, + STATE(1636), 8, sym_namespace, sym_import_statement, sym_alias_definition_statement, @@ -86340,149 +90728,98 @@ static const uint16_t ts_small_parse_table[] = { sym_type_definition_statement, sym_abstract_type_definition_statement, sym_typeclass_definition_statement, - [73861] = 21, + [77475] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(793), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, sym_name_identifier, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(803), 1, - anon_sym_SQUOTE, - ACTIONS(2940), 1, - anon_sym_LPAREN, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(1973), 1, - sym_type_subexpression, - STATE(2016), 1, - sym_subexpression_token, - STATE(2329), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 2, - anon_sym_then, sym_operator, - ACTIONS(2942), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2944), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1315), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(2018), 2, - sym_scoped_statement, - sym_name_expression, - [73933] = 21, + sym_number_literal, + anon_sym_SQUOTE, + [77513] = 21, ACTIONS(3), 1, sym__line_comment, - ACTIONS(793), 1, + ACTIONS(3221), 1, + anon_sym_LPAREN, + ACTIONS(3227), 1, sym_name_identifier, - ACTIONS(797), 1, + ACTIONS(3233), 1, sym_float_number_literal, - ACTIONS(799), 1, + ACTIONS(3236), 1, sym_number_literal, - ACTIONS(801), 1, + ACTIONS(3239), 1, anon_sym_DQUOTE, - ACTIONS(803), 1, + ACTIONS(3242), 1, anon_sym_SQUOTE, - ACTIONS(2940), 1, - anon_sym_LPAREN, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(1973), 1, - sym_type_subexpression, - STATE(2016), 1, - sym_subexpression_token, - STATE(2329), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(511), 2, - anon_sym_then, - sym_operator, - ACTIONS(2942), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2944), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1320), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1980), 2, + STATE(1839), 1, sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(2018), 2, - sym_scoped_statement, + STATE(1856), 1, sym_name_expression, - [74005] = 4, - ACTIONS(3), 1, - sym__line_comment, + STATE(1861), 1, + sym_type_subexpression, + STATE(1930), 1, + sym_subexpression_token, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2526), 1, + aux_sym_reference_expression_repeat1, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, + ACTIONS(413), 2, anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74043] = 4, + ACTIONS(3224), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3230), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1345), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1919), 2, + sym_string_literal, + sym_char_literal, + STATE(1918), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [77585] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2091), 8, + ACTIONS(2085), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -86491,7 +90828,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2093), 18, + ACTIONS(2087), 18, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -86510,11 +90847,43 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [74081] = 5, + [77623] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [77661] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -86527,788 +90896,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74121] = 16, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2946), 1, - ts_builtin_sym_end, - ACTIONS(2948), 1, - anon_sym_namespace, - ACTIONS(2951), 1, - anon_sym_partition, - ACTIONS(2954), 1, - anon_sym_use, - ACTIONS(2957), 1, - anon_sym_import, - ACTIONS(2963), 1, - anon_sym_type, - ACTIONS(2966), 1, - anon_sym_decl, - ACTIONS(2969), 1, - anon_sym_def, - ACTIONS(2978), 1, - anon_sym_typeclass, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2960), 2, - anon_sym_alias, - anon_sym_let, - ACTIONS(2972), 2, - anon_sym_struct, - anon_sym_class, - ACTIONS(2975), 2, - anon_sym_basic, - anon_sym_abstract, - STATE(1319), 3, - sym_source_statement, - sym_partition, - aux_sym_source_file_repeat1, - STATE(1580), 8, - sym_namespace, - sym_import_statement, - sym_alias_definition_statement, - sym__function_declaration_statement, - sym_function_definition_statement, - sym_type_definition_statement, - sym_abstract_type_definition_statement, - sym_typeclass_definition_statement, - [74183] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2981), 1, - anon_sym_LPAREN, - ACTIONS(2987), 1, - sym_name_identifier, - ACTIONS(2993), 1, - sym_float_number_literal, - ACTIONS(2996), 1, - sym_number_literal, - ACTIONS(2999), 1, - anon_sym_DQUOTE, - ACTIONS(3002), 1, - anon_sym_SQUOTE, - STATE(1402), 1, - aux_sym_name_expression_repeat1, - STATE(1750), 1, - aux_sym_name_expression_repeat2, - STATE(1973), 1, - sym_type_subexpression, - STATE(2016), 1, - sym_subexpression_token, - STATE(2329), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(387), 2, - anon_sym_then, - sym_operator, - ACTIONS(2984), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(2990), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1320), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1980), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - STATE(2018), 2, - sym_scoped_statement, - sym_name_expression, - [74255] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2057), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2059), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74295] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - ACTIONS(3005), 1, - anon_sym_LPAREN, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2009), 1, - sym_type_subexpression, - STATE(2011), 1, - sym_subexpression_token, - STATE(2351), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 2, - anon_sym_while, - sym_operator, - ACTIONS(3007), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3009), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1323), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(2015), 2, - sym_scoped_statement, - sym_name_expression, - [74367] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(683), 1, - sym_name_identifier, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - ACTIONS(3005), 1, - anon_sym_LPAREN, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2009), 1, - sym_type_subexpression, - STATE(2011), 1, - sym_subexpression_token, - STATE(2351), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(511), 2, - anon_sym_while, - sym_operator, - ACTIONS(3007), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3009), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1324), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(2015), 2, - sym_scoped_statement, - sym_name_expression, - [74439] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3011), 1, - anon_sym_LPAREN, - ACTIONS(3017), 1, - sym_name_identifier, - ACTIONS(3023), 1, - sym_float_number_literal, - ACTIONS(3026), 1, - sym_number_literal, - ACTIONS(3029), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, - anon_sym_SQUOTE, - STATE(1393), 1, - aux_sym_name_expression_repeat1, - STATE(1830), 1, - aux_sym_name_expression_repeat2, - STATE(2009), 1, - sym_type_subexpression, - STATE(2011), 1, - sym_subexpression_token, - STATE(2351), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(387), 2, - anon_sym_while, - sym_operator, - ACTIONS(3014), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3020), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1324), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(1953), 2, - sym_extended_name, - sym_literal, - STATE(2015), 2, - sym_scoped_statement, - sym_name_expression, - [74511] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2015), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2017), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74551] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - ACTIONS(3035), 1, - anon_sym_LPAREN, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(1997), 1, - sym_type_subexpression, - STATE(2022), 1, - sym_subexpression_token, - STATE(2382), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 2, - anon_sym_do, - sym_operator, - ACTIONS(3037), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3039), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1329), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(2013), 2, - sym_scoped_statement, - sym_name_expression, - [74623] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74663] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 16, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74701] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(661), 1, - sym_name_identifier, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - ACTIONS(3035), 1, - anon_sym_LPAREN, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(1997), 1, - sym_type_subexpression, - STATE(2022), 1, - sym_subexpression_token, - STATE(2382), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(511), 2, - anon_sym_do, - sym_operator, - ACTIONS(3037), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3039), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1331), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(2013), 2, - sym_scoped_statement, - sym_name_expression, - [74773] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74813] = 21, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3041), 1, - anon_sym_LPAREN, - ACTIONS(3047), 1, - sym_name_identifier, - ACTIONS(3053), 1, - sym_float_number_literal, - ACTIONS(3056), 1, - sym_number_literal, - ACTIONS(3059), 1, - anon_sym_DQUOTE, - ACTIONS(3062), 1, - anon_sym_SQUOTE, - STATE(1392), 1, - aux_sym_name_expression_repeat1, - STATE(1778), 1, - aux_sym_name_expression_repeat2, - STATE(1997), 1, - sym_type_subexpression, - STATE(2022), 1, - sym_subexpression_token, - STATE(2382), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(387), 2, - anon_sym_do, - sym_operator, - ACTIONS(3044), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3050), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(1331), 2, - sym_function_argument, - aux_sym_function_call_expression_repeat1, - STATE(1982), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - STATE(2013), 2, - sym_scoped_statement, - sym_name_expression, - [74885] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 16, - anon_sym_const, - anon_sym_var, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74923] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74961] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 16, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [74999] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2101), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2103), 15, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75039] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 18, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75077] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 18, + ACTIONS(2059), 18, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -87327,184 +90915,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75115] = 4, + [77699] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2063), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2019), 16, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75153] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 16, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75191] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 16, - anon_sym_const, - anon_sym_var, - anon_sym_AMP, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75229] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 16, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75267] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 15, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75307] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2063), 8, + ACTIONS(343), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -87513,7 +90930,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2019), 18, + ACTIONS(345), 18, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -87527,80 +90944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_DOT, + anon_sym_PIPE, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75345] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 16, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75383] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 16, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75421] = 4, + [77737] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -87620,6 +90969,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2075), 16, anon_sym_const, anon_sym_var, + anon_sym_AMP, anon_sym_match, anon_sym_if, anon_sym_do, @@ -87629,12 +90979,411 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75459] = 4, + [77775] = 16, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(9), 1, + anon_sym_partition, + ACTIONS(11), 1, + anon_sym_use, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(17), 1, + anon_sym_type, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(21), 1, + anon_sym_def, + ACTIONS(27), 1, + anon_sym_typeclass, + ACTIONS(3245), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(15), 2, + anon_sym_alias, + anon_sym_let, + ACTIONS(23), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(25), 2, + anon_sym_basic, + anon_sym_abstract, + STATE(1343), 3, + sym_source_statement, + sym_partition, + aux_sym_source_file_repeat1, + STATE(1636), 8, + sym_namespace, + sym_import_statement, + sym_alias_definition_statement, + sym__function_declaration_statement, + sym_function_definition_statement, + sym_type_definition_statement, + sym_abstract_type_definition_statement, + sym_typeclass_definition_statement, + [77837] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 8, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 18, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [77875] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [77913] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [77951] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 16, + anon_sym_const, + anon_sym_var, + anon_sym_AMP, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [77989] = 21, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(621), 1, + sym_name_identifier, + ACTIONS(3042), 1, + anon_sym_LPAREN, + ACTIONS(3048), 1, + sym_float_number_literal, + ACTIONS(3050), 1, + sym_number_literal, + ACTIONS(3052), 1, + anon_sym_DQUOTE, + ACTIONS(3054), 1, + anon_sym_SQUOTE, + STATE(1818), 1, + sym_extended_name, + STATE(1891), 1, + sym_name_expression, + STATE(1894), 1, + sym_type_subexpression, + STATE(1908), 1, + sym_subexpression_token, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(409), 2, + anon_sym_with, + sym_operator, + ACTIONS(3044), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(3046), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1334), 2, + sym_function_argument, + aux_sym_function_call_expression_repeat1, + STATE(1907), 2, + sym_string_literal, + sym_char_literal, + STATE(1939), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [78061] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 16, + anon_sym_const, + anon_sym_var, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78099] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 18, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78137] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2057), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2059), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78174] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(343), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(345), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78211] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 15, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78248] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -87651,7 +91400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2071), 16, + ACTIONS(2071), 15, anon_sym_const, anon_sym_var, anon_sym_match, @@ -87663,20 +91412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75497] = 5, + [78285] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2057), 10, + ACTIONS(343), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -87687,7 +91433,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2059), 15, + ACTIONS(345), 15, anon_sym_const, anon_sym_var, anon_sym_match, @@ -87703,11 +91449,141 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75537] = 5, + [78322] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2129), 10, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2131), 15, + anon_sym_const, + anon_sym_var, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78359] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2085), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2087), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78396] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2073), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2075), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78433] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2069), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2071), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78470] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -87738,13 +91614,13 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75577] = 4, + [78507] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(485), 8, + ACTIONS(2129), 8, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_TILDE, @@ -87753,7 +91629,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(487), 18, + ACTIONS(2131), 17, anon_sym_namespace, anon_sym_use, anon_sym_import, @@ -87767,18 +91643,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_AMP, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75615] = 4, + [78544] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2083), 10, + ACTIONS(2073), 10, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -87789,7 +91664,7 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2085), 16, + ACTIONS(2075), 15, anon_sym_const, anon_sym_var, anon_sym_match, @@ -87801,16 +91676,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75653] = 5, + [78581] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2065), 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2067), 17, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [78618] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -87841,154 +91746,22 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [75693] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 15, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75730] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(485), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(487), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75767] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 8, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 17, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75804] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2091), 10, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2093), 15, - anon_sym_const, - anon_sym_var, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [75841] = 7, + [78655] = 7, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(313), 1, - anon_sym_DOT, - ACTIONS(319), 1, + ACTIONS(301), 1, anon_sym_type, - ACTIONS(321), 1, + ACTIONS(303), 1, + anon_sym_DOT, + ACTIONS(305), 1, anon_sym__, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3065), 2, + ACTIONS(3247), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(317), 20, + ACTIONS(299), 20, ts_builtin_sym_end, anon_sym_namespace, anon_sym_RBRACE, @@ -88009,7 +91782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, sym_type_identifier, sym_abstract_type_identifier, - [75884] = 15, + [78698] = 15, ACTIONS(5), 1, sym__doc_comment, ACTIONS(7), 1, @@ -88020,1288 +91793,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decl, ACTIONS(27), 1, anon_sym_typeclass, - ACTIONS(3067), 1, - anon_sym_use, - ACTIONS(3069), 1, - anon_sym_import, - ACTIONS(3071), 1, - anon_sym_def, - STATE(2716), 1, - sym_sources, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(15), 2, - anon_sym_alias, - anon_sym_let, - ACTIONS(23), 2, - anon_sym_struct, - anon_sym_class, - ACTIONS(25), 2, - anon_sym_basic, - anon_sym_abstract, - STATE(1360), 2, - sym_source_statement, - aux_sym_sources_repeat1, - STATE(1580), 8, - sym_namespace, - sym_import_statement, - sym_alias_definition_statement, - sym__function_declaration_statement, - sym_function_definition_statement, - sym_type_definition_statement, - sym_abstract_type_definition_statement, - sym_typeclass_definition_statement, - [75942] = 15, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3073), 1, - anon_sym_namespace, - ACTIONS(3076), 1, - anon_sym_RBRACE, - ACTIONS(3078), 1, - anon_sym_use, - ACTIONS(3081), 1, - anon_sym_import, - ACTIONS(3087), 1, - anon_sym_type, - ACTIONS(3090), 1, - anon_sym_decl, - ACTIONS(3093), 1, - anon_sym_def, - ACTIONS(3102), 1, - anon_sym_typeclass, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3084), 2, - anon_sym_alias, - anon_sym_let, - ACTIONS(3096), 2, - anon_sym_struct, - anon_sym_class, - ACTIONS(3099), 2, - anon_sym_basic, - anon_sym_abstract, - STATE(1359), 2, - sym_source_statement, - aux_sym_sources_repeat1, - STATE(1580), 8, - sym_namespace, - sym_import_statement, - sym_alias_definition_statement, - sym__function_declaration_statement, - sym_function_definition_statement, - sym_type_definition_statement, - sym_abstract_type_definition_statement, - sym_typeclass_definition_statement, - [76000] = 15, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(7), 1, - anon_sym_namespace, - ACTIONS(17), 1, - anon_sym_type, - ACTIONS(19), 1, - anon_sym_decl, - ACTIONS(27), 1, - anon_sym_typeclass, - ACTIONS(3067), 1, - anon_sym_use, - ACTIONS(3069), 1, - anon_sym_import, - ACTIONS(3071), 1, - anon_sym_def, - ACTIONS(3105), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(15), 2, - anon_sym_alias, - anon_sym_let, - ACTIONS(23), 2, - anon_sym_struct, - anon_sym_class, - ACTIONS(25), 2, - anon_sym_basic, - anon_sym_abstract, - STATE(1359), 2, - sym_source_statement, - aux_sym_sources_repeat1, - STATE(1580), 8, - sym_namespace, - sym_import_statement, - sym_alias_definition_statement, - sym__function_declaration_statement, - sym_function_definition_statement, - sym_type_definition_statement, - sym_abstract_type_definition_statement, - sym_typeclass_definition_statement, - [76058] = 15, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(7), 1, - anon_sym_namespace, - ACTIONS(17), 1, - anon_sym_type, - ACTIONS(19), 1, - anon_sym_decl, - ACTIONS(27), 1, - anon_sym_typeclass, - ACTIONS(3067), 1, - anon_sym_use, - ACTIONS(3069), 1, - anon_sym_import, - ACTIONS(3071), 1, - anon_sym_def, - STATE(2851), 1, - sym_sources, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(15), 2, - anon_sym_alias, - anon_sym_let, - ACTIONS(23), 2, - anon_sym_struct, - anon_sym_class, - ACTIONS(25), 2, - anon_sym_basic, - anon_sym_abstract, - STATE(1360), 2, - sym_source_statement, - aux_sym_sources_repeat1, - STATE(1580), 8, - sym_namespace, - sym_import_statement, - sym_alias_definition_statement, - sym__function_declaration_statement, - sym_function_definition_statement, - sym_type_definition_statement, - sym_abstract_type_definition_statement, - sym_typeclass_definition_statement, - [76116] = 15, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(7), 1, - anon_sym_namespace, - ACTIONS(17), 1, - anon_sym_type, - ACTIONS(19), 1, - anon_sym_decl, - ACTIONS(27), 1, - anon_sym_typeclass, - ACTIONS(3067), 1, - anon_sym_use, - ACTIONS(3069), 1, - anon_sym_import, - ACTIONS(3071), 1, - anon_sym_def, - STATE(2710), 1, - sym_sources, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(15), 2, - anon_sym_alias, - anon_sym_let, - ACTIONS(23), 2, - anon_sym_struct, - anon_sym_class, - ACTIONS(25), 2, - anon_sym_basic, - anon_sym_abstract, - STATE(1360), 2, - sym_source_statement, - aux_sym_sources_repeat1, - STATE(1580), 8, - sym_namespace, - sym_import_statement, - sym_alias_definition_statement, - sym__function_declaration_statement, - sym_function_definition_statement, - sym_type_definition_statement, - sym_abstract_type_definition_statement, - sym_typeclass_definition_statement, - [76174] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3107), 1, - ts_builtin_sym_end, - ACTIONS(3111), 1, - anon_sym_LPAREN, - ACTIONS(3117), 1, - sym_name_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3114), 2, - sym_typeclass_identifier, - sym_type_identifier, - STATE(1363), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1415), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3109), 14, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76219] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3122), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3120), 22, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_LT_DASH, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_in, - [76254] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3124), 1, - ts_builtin_sym_end, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_name_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3130), 2, - sym_typeclass_identifier, - sym_type_identifier, - STATE(1363), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1415), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3126), 14, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76299] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3136), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3134), 22, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_LT_DASH, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_in, - [76334] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(3132), 1, - sym_name_identifier, - ACTIONS(3138), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3130), 2, - sym_typeclass_identifier, - sym_type_identifier, - STATE(1363), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1415), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3140), 14, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76379] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3144), 1, - anon_sym_type, - ACTIONS(3146), 1, - anon_sym_LPAREN, - ACTIONS(3149), 1, - sym_abstract_type_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - ACTIONS(3142), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76419] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3138), 1, - anon_sym_RBRACE, - ACTIONS(3152), 1, - anon_sym_LPAREN, - ACTIONS(3156), 1, - sym_name_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3154), 2, - sym_typeclass_identifier, - sym_type_identifier, - STATE(1371), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1484), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3140), 13, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76463] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3158), 7, - ts_builtin_sym_end, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LPAREN, - sym_typeclass_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(3160), 15, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - [76497] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3107), 1, - anon_sym_RBRACE, - ACTIONS(3162), 1, - anon_sym_LPAREN, - ACTIONS(3168), 1, - sym_name_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3165), 2, - sym_typeclass_identifier, - sym_type_identifier, - STATE(1371), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1484), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3109), 13, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76541] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3124), 1, - anon_sym_RBRACE, - ACTIONS(3152), 1, - anon_sym_LPAREN, - ACTIONS(3156), 1, - sym_name_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3154), 2, - sym_typeclass_identifier, - sym_type_identifier, - STATE(1371), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1484), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3126), 13, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76585] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3173), 1, - anon_sym_type, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1374), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - ACTIONS(3171), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76624] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3181), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - ACTIONS(3179), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76663] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3185), 1, - anon_sym_type, - ACTIONS(3187), 1, - anon_sym_AMP, - STATE(1381), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3183), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - [76699] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3191), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3189), 19, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_LPAREN, - sym_abstract_type_identifier, - [76731] = 20, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(63), 1, - sym_abstract_type_identifier, - ACTIONS(3187), 1, - anon_sym_AMP, - ACTIONS(3193), 1, - anon_sym_LPAREN, - ACTIONS(3195), 1, - anon_sym_PIPE, - ACTIONS(3197), 1, - anon_sym_DOT, - ACTIONS(3199), 1, - sym_type_identifier, - STATE(209), 1, - sym_type_expression, - STATE(1383), 1, - aux_sym_tuple_type_repeat1, - STATE(1389), 1, - aux_sym_variant_type_repeat1, - STATE(1519), 1, - sym_parametrized_type, - STATE(1656), 1, - sym_any_type, - STATE(2061), 1, - aux_sym_function_type_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2366), 1, - sym_constructor, - STATE(2449), 1, - aux_sym_constructor_repeat1, - STATE(2665), 1, - sym_scoped_any_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1615), 3, - sym_function_type, - sym_tuple_type, - sym_variant_type, - [76795] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3205), 1, - anon_sym_AMP, - STATE(1386), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [76831] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3209), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3207), 19, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_COLON, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_LPAREN, - sym_abstract_type_identifier, - [76863] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3213), 1, - anon_sym_type, - ACTIONS(3215), 1, - anon_sym_AMP, - STATE(1380), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3211), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - [76899] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3187), 1, - anon_sym_AMP, - ACTIONS(3220), 1, - anon_sym_type, - STATE(1380), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3218), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - [76935] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3226), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - ACTIONS(3222), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [76969] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3187), 1, - anon_sym_AMP, - ACTIONS(3230), 1, - anon_sym_type, - STATE(1380), 1, - aux_sym_tuple_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3228), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - anon_sym_PIPE, - [77005] = 20, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(63), 1, - sym_abstract_type_identifier, - ACTIONS(3193), 1, - anon_sym_LPAREN, - ACTIONS(3199), 1, - sym_type_identifier, - ACTIONS(3232), 1, - anon_sym_AMP, - ACTIONS(3234), 1, - anon_sym_PIPE, - ACTIONS(3236), 1, - anon_sym_DOT, - ACTIONS(3238), 1, - sym_operator, - STATE(209), 1, - sym_type_expression, - STATE(1383), 1, - aux_sym_tuple_type_repeat1, - STATE(1389), 1, - aux_sym_variant_type_repeat1, - STATE(2061), 1, - aux_sym_function_type_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2366), 1, - sym_constructor, - STATE(2449), 1, - aux_sym_constructor_repeat1, - STATE(2453), 1, - sym_parametrized_type, - STATE(2665), 1, - sym_scoped_any_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - STATE(2531), 3, - sym_function_type, - sym_tuple_type, - sym_variant_type, - [77069] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3244), 1, - anon_sym_AMP, - STATE(1385), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [77105] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3205), 1, - anon_sym_AMP, ACTIONS(3249), 1, - anon_sym_type, - STATE(1385), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [77141] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(597), 1, - sym_float_number_literal, - ACTIONS(599), 1, - sym_number_literal, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(603), 1, - anon_sym_SQUOTE, - ACTIONS(2660), 1, - sym_name_identifier, ACTIONS(3251), 1, - anon_sym_LPAREN, - STATE(1799), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2358), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, + anon_sym_import, + ACTIONS(3253), 1, + anon_sym_def, + STATE(3055), 1, + sym_sources, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(591), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(690), 2, - sym_string_literal, - sym_char_literal, - STATE(777), 2, - sym_extended_name, - sym_literal, - [77198] = 19, + ACTIONS(15), 2, + anon_sym_alias, + anon_sym_let, + ACTIONS(23), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(25), 2, + anon_sym_basic, + anon_sym_abstract, + STATE(1378), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1636), 8, + sym_namespace, + sym_import_statement, + sym_alias_definition_statement, + sym__function_declaration_statement, + sym_function_definition_statement, + sym_type_definition_statement, + sym_abstract_type_definition_statement, + sym_typeclass_definition_statement, + [78756] = 15, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(63), 1, - sym_abstract_type_identifier, - ACTIONS(3187), 1, - anon_sym_AMP, - ACTIONS(3193), 1, - anon_sym_LPAREN, - ACTIONS(3195), 1, - anon_sym_PIPE, - ACTIONS(3197), 1, - anon_sym_DOT, - ACTIONS(3199), 1, - sym_type_identifier, - STATE(209), 1, - sym_type_expression, - STATE(1383), 1, - aux_sym_tuple_type_repeat1, - STATE(1389), 1, - aux_sym_variant_type_repeat1, - STATE(2061), 1, - aux_sym_function_type_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2366), 1, - sym_constructor, - STATE(2449), 1, - aux_sym_constructor_repeat1, - STATE(2453), 1, - sym_parametrized_type, - STATE(2665), 1, - sym_scoped_any_type, - STATE(2689), 1, - sym_type_subexpression, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(17), 1, + anon_sym_type, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(27), 1, + anon_sym_typeclass, + ACTIONS(3249), 1, + anon_sym_use, + ACTIONS(3251), 1, + anon_sym_import, + ACTIONS(3253), 1, + anon_sym_def, + STATE(3056), 1, + sym_sources, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - STATE(2531), 3, - sym_function_type, - sym_tuple_type, - sym_variant_type, - [77259] = 6, + ACTIONS(15), 2, + anon_sym_alias, + anon_sym_let, + ACTIONS(23), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(25), 2, + anon_sym_basic, + anon_sym_abstract, + STATE(1378), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1636), 8, + sym_namespace, + sym_import_statement, + sym_alias_definition_statement, + sym__function_declaration_statement, + sym_function_definition_statement, + sym_type_definition_statement, + sym_abstract_type_definition_statement, + sym_typeclass_definition_statement, + [78814] = 15, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3195), 1, - anon_sym_PIPE, ACTIONS(3255), 1, - anon_sym_type, - STATE(1456), 1, - aux_sym_variant_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3253), 16, - ts_builtin_sym_end, anon_sym_namespace, + ACTIONS(3258), 1, anon_sym_RBRACE, - anon_sym_partition, + ACTIONS(3260), 1, anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - [77294] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3257), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 5, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - ACTIONS(3222), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [77327] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3259), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - ACTIONS(3222), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [77360] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(671), 1, - anon_sym_SQUOTE, - ACTIONS(2746), 1, - sym_name_identifier, - ACTIONS(3261), 1, - anon_sym_LPAREN, - STATE(1760), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2382), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(3037), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1971), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - [77417] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(693), 1, - anon_sym_SQUOTE, - ACTIONS(2684), 1, - sym_name_identifier, ACTIONS(3263), 1, - anon_sym_LPAREN, - STATE(1812), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2351), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, + anon_sym_import, + ACTIONS(3269), 1, + anon_sym_type, + ACTIONS(3272), 1, + anon_sym_decl, + ACTIONS(3275), 1, + anon_sym_def, + ACTIONS(3284), 1, + anon_sym_typeclass, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(3007), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(2010), 2, - sym_extended_name, - sym_literal, - [77474] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3265), 1, - sym_operator, - ACTIONS(5), 2, + ACTIONS(3266), 2, + anon_sym_alias, + anon_sym_let, + ACTIONS(3278), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(3281), 2, + anon_sym_basic, + anon_sym_abstract, + STATE(1376), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1636), 8, + sym_namespace, + sym_import_statement, + sym_alias_definition_statement, + sym__function_declaration_statement, + sym_function_definition_statement, + sym_type_definition_statement, + sym_abstract_type_definition_statement, + sym_typeclass_definition_statement, + [78872] = 15, + ACTIONS(5), 1, sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - ACTIONS(3222), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [77507] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3267), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 2, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(17), 1, anon_sym_type, - anon_sym_AMP, - ACTIONS(3222), 16, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(27), 1, + anon_sym_typeclass, + ACTIONS(3249), 1, + anon_sym_use, + ACTIONS(3251), 1, + anon_sym_import, + ACTIONS(3253), 1, + anon_sym_def, + STATE(2959), 1, + sym_sources, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(15), 2, + anon_sym_alias, + anon_sym_let, + ACTIONS(23), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(25), 2, + anon_sym_basic, + anon_sym_abstract, + STATE(1378), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1636), 8, + sym_namespace, + sym_import_statement, + sym_alias_definition_statement, + sym__function_declaration_statement, + sym_function_definition_statement, + sym_type_definition_statement, + sym_abstract_type_definition_statement, + sym_typeclass_definition_statement, + [78930] = 15, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(7), 1, + anon_sym_namespace, + ACTIONS(17), 1, + anon_sym_type, + ACTIONS(19), 1, + anon_sym_decl, + ACTIONS(27), 1, + anon_sym_typeclass, + ACTIONS(3249), 1, + anon_sym_use, + ACTIONS(3251), 1, + anon_sym_import, + ACTIONS(3253), 1, + anon_sym_def, + ACTIONS(3287), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(15), 2, + anon_sym_alias, + anon_sym_let, + ACTIONS(23), 2, + anon_sym_struct, + anon_sym_class, + ACTIONS(25), 2, + anon_sym_basic, + anon_sym_abstract, + STATE(1376), 2, + sym_source_statement, + aux_sym_sources_repeat1, + STATE(1636), 8, + sym_namespace, + sym_import_statement, + sym_alias_definition_statement, + sym__function_declaration_statement, + sym_function_definition_statement, + sym_type_definition_statement, + sym_abstract_type_definition_statement, + sym_typeclass_definition_statement, + [78988] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3289), 1, ts_builtin_sym_end, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(3297), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3295), 2, + sym_typeclass_identifier, + sym_type_identifier, + STATE(1381), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1484), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3291), 14, anon_sym_namespace, anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, + anon_sym_type, anon_sym_let, anon_sym_decl, anon_sym_def, @@ -89310,757 +92033,425 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [77540] = 17, + [79033] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(247), 1, - anon_sym_SQUOTE, - ACTIONS(2676), 1, - sym_name_identifier, - ACTIONS(3269), 1, + ACTIONS(3301), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3299), 22, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_LT_DASH, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_in, + [79068] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3303), 1, + ts_builtin_sym_end, + ACTIONS(3307), 1, anon_sym_LPAREN, - STATE(1739), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + ACTIONS(3313), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3310), 2, + sym_typeclass_identifier, + sym_type_identifier, + STATE(1381), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1484), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3305), 14, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [79113] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(3297), 1, + sym_name_identifier, + ACTIONS(3316), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3295), 2, + sym_typeclass_identifier, + sym_type_identifier, + STATE(1381), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1484), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3318), 14, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [79158] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3322), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3320), 22, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_LT_DASH, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_in, + [79193] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(611), 1, + anon_sym_LPAREN, + ACTIONS(2754), 1, + sym_name_identifier, + STATE(601), 1, + sym_subexpression_token, + STATE(1818), 1, + sym_extended_name, + STATE(2012), 1, aux_sym_name_expression_repeat1, - STATE(2387), 1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(2605), 1, + sym_name_expression, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1887), 2, + ACTIONS(3044), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1231), 2, - sym_extended_name, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, + [79257] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(899), 1, + anon_sym_LPAREN, + ACTIONS(2720), 1, + sym_name_identifier, + STATE(663), 1, + sym_subexpression_token, + STATE(717), 1, + sym_extended_name, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2382), 1, + sym_name_expression, + STATE(2498), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(373), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79321] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1235), 1, + sym_float_number_literal, + ACTIONS(1237), 1, + sym_number_literal, + ACTIONS(1239), 1, + anon_sym_DQUOTE, + ACTIONS(1241), 1, + anon_sym_SQUOTE, + ACTIONS(2722), 1, + sym_name_identifier, + ACTIONS(3324), 1, + anon_sym_LPAREN, + STATE(955), 1, + sym_extended_name, + STATE(1133), 1, + sym_name_expression, + STATE(1263), 1, + sym_subexpression_token, + STATE(2019), 1, + aux_sym_name_expression_repeat1, + STATE(2237), 1, + aux_sym_name_expression_repeat2, + STATE(2532), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1231), 2, + anon_sym_TILDE, + anon_sym_AT, STATE(1259), 2, sym_string_literal, sym_char_literal, - [77597] = 5, + STATE(1261), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79385] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3273), 1, - anon_sym_type, - ACTIONS(3275), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3271), 17, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - [77630] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1513), 1, + ACTIONS(1549), 1, sym_float_number_literal, - ACTIONS(1515), 1, + ACTIONS(1551), 1, sym_number_literal, - ACTIONS(1517), 1, + ACTIONS(1553), 1, anon_sym_DQUOTE, - ACTIONS(1519), 1, + ACTIONS(1555), 1, anon_sym_SQUOTE, - ACTIONS(2492), 1, + ACTIONS(2596), 1, sym_name_identifier, - ACTIONS(3277), 1, + ACTIONS(3326), 1, anon_sym_LPAREN, - STATE(1722), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(1103), 1, + sym_extended_name, + STATE(1256), 1, + sym_name_expression, + STATE(1338), 1, + sym_subexpression_token, + STATE(2017), 1, aux_sym_name_expression_repeat1, - STATE(2353), 1, + STATE(2224), 1, + aux_sym_name_expression_repeat2, + STATE(2544), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1507), 2, + ACTIONS(1543), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1058), 2, + STATE(1320), 2, sym_string_literal, sym_char_literal, - STATE(1155), 2, - sym_extended_name, + STATE(1321), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - [77687] = 17, + [79449] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(1419), 1, - sym_float_number_literal, - ACTIONS(1421), 1, - sym_number_literal, - ACTIONS(1423), 1, - anon_sym_DQUOTE, - ACTIONS(1425), 1, - anon_sym_SQUOTE, - ACTIONS(2674), 1, - sym_name_identifier, - ACTIONS(3279), 1, - anon_sym_LPAREN, - STATE(1728), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2355), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1413), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(807), 2, - sym_string_literal, - sym_char_literal, - STATE(830), 2, - sym_extended_name, - sym_literal, - [77744] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, - anon_sym_SQUOTE, - ACTIONS(2744), 1, - sym_name_identifier, - ACTIONS(3281), 1, - anon_sym_LPAREN, - STATE(1709), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2377), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1971), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1348), 2, - sym_extended_name, - sym_literal, - [77801] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2498), 1, - sym_name_identifier, - ACTIONS(2502), 1, - sym_float_number_literal, - ACTIONS(2504), 1, - sym_number_literal, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(2508), 1, - anon_sym_SQUOTE, - ACTIONS(3283), 1, - anon_sym_LPAREN, - STATE(1738), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2357), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2496), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1693), 2, - sym_extended_name, - sym_literal, - STATE(1715), 2, - sym_string_literal, - sym_char_literal, - [77858] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, ACTIONS(801), 1, - anon_sym_DQUOTE, + sym_float_number_literal, ACTIONS(803), 1, - anon_sym_SQUOTE, - ACTIONS(2666), 1, - sym_name_identifier, - ACTIONS(3285), 1, - anon_sym_LPAREN, - STATE(1827), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2329), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2942), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1964), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - [77915] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, sym_number_literal, - ACTIONS(71), 1, + ACTIONS(805), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(807), 1, anon_sym_SQUOTE, - ACTIONS(2415), 1, + ACTIONS(2560), 1, sym_name_identifier, - ACTIONS(3287), 1, + ACTIONS(3328), 1, anon_sym_LPAREN, - STATE(1717), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(787), 1, + sym_extended_name, + STATE(980), 1, + sym_name_expression, + STATE(1093), 1, + sym_subexpression_token, + STATE(1949), 1, aux_sym_name_expression_repeat1, - STATE(2375), 1, + STATE(2216), 1, + aux_sym_name_expression_repeat2, + STATE(2542), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(2419), 2, + ACTIONS(795), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1718), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, + STATE(1079), 2, sym_string_literal, sym_char_literal, - [77972] = 17, + STATE(1080), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79513] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(67), 1, + ACTIONS(1117), 1, sym_float_number_literal, - ACTIONS(69), 1, + ACTIONS(1119), 1, sym_number_literal, - ACTIONS(71), 1, + ACTIONS(1121), 1, anon_sym_DQUOTE, - ACTIONS(73), 1, + ACTIONS(1123), 1, anon_sym_SQUOTE, - ACTIONS(2415), 1, + ACTIONS(2728), 1, sym_name_identifier, - ACTIONS(3287), 1, + ACTIONS(3330), 1, anon_sym_LPAREN, - STATE(1717), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(831), 1, + sym_extended_name, + STATE(909), 1, + sym_name_expression, + STATE(1179), 1, + sym_subexpression_token, + STATE(1940), 1, aux_sym_name_expression_repeat1, - STATE(2375), 1, + STATE(2270), 1, + aux_sym_name_expression_repeat2, + STATE(2475), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(2419), 2, - anon_sym_TILDE, - anon_sym_AT, - ACTIONS(3289), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - STATE(1718), 2, - sym_extended_name, - sym_literal, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - [78029] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1753), 1, - sym_float_number_literal, - ACTIONS(1755), 1, - sym_number_literal, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(1759), 1, - anon_sym_SQUOTE, - ACTIONS(2692), 1, - sym_name_identifier, - ACTIONS(3291), 1, - anon_sym_LPAREN, - STATE(1764), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2359), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1747), 2, + ACTIONS(1111), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1191), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, + STATE(1189), 2, sym_string_literal, sym_char_literal, - [78086] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2295), 1, - sym_name_identifier, - ACTIONS(2299), 1, - sym_float_number_literal, - ACTIONS(2301), 1, - sym_number_literal, - ACTIONS(2303), 1, - anon_sym_DQUOTE, - ACTIONS(2305), 1, - anon_sym_SQUOTE, - ACTIONS(3293), 1, - anon_sym_LPAREN, - STATE(1746), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2364), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2293), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1590), 2, - sym_string_literal, - sym_char_literal, - STATE(1622), 2, - sym_extended_name, + STATE(1188), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - [78143] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(1101), 1, - anon_sym_SQUOTE, - ACTIONS(2742), 1, - sym_name_identifier, - ACTIONS(3295), 1, - anon_sym_LPAREN, - STATE(1704), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2337), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2708), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - STATE(1819), 2, - sym_extended_name, - sym_literal, - [78200] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1653), 1, - sym_float_number_literal, - ACTIONS(1655), 1, - sym_number_literal, - ACTIONS(1657), 1, - anon_sym_DQUOTE, - ACTIONS(1659), 1, - anon_sym_SQUOTE, - ACTIONS(2580), 1, - sym_name_identifier, - ACTIONS(3297), 1, - anon_sym_LPAREN, - STATE(1751), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2368), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1647), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1005), 2, - sym_extended_name, - sym_literal, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - [78257] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1221), 1, - sym_float_number_literal, - ACTIONS(1223), 1, - sym_number_literal, - ACTIONS(1225), 1, - anon_sym_DQUOTE, - ACTIONS(1227), 1, - anon_sym_SQUOTE, - ACTIONS(2562), 1, - sym_name_identifier, - ACTIONS(3299), 1, - anon_sym_LPAREN, - STATE(1754), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2374), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1215), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(899), 2, - sym_string_literal, - sym_char_literal, - STATE(926), 2, - sym_extended_name, - sym_literal, - [78314] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1005), 1, - sym_float_number_literal, - ACTIONS(1007), 1, - sym_number_literal, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - ACTIONS(1011), 1, - anon_sym_SQUOTE, - ACTIONS(2429), 1, - sym_name_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(1763), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2381), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(999), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(725), 2, - sym_extended_name, - sym_literal, - STATE(738), 2, - sym_string_literal, - sym_char_literal, - [78371] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1403), 1, - sym_float_number_literal, - ACTIONS(1405), 1, - sym_number_literal, - ACTIONS(1407), 1, - anon_sym_DQUOTE, - ACTIONS(1409), 1, - anon_sym_SQUOTE, - ACTIONS(2345), 1, - sym_name_identifier, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(1772), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2320), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1397), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(898), 2, - sym_extended_name, - sym_literal, - STATE(913), 2, - sym_string_literal, - sym_char_literal, - [78428] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_SQUOTE, - ACTIONS(2582), 1, - sym_name_identifier, - ACTIONS(3305), 1, - anon_sym_LPAREN, - STATE(1734), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2342), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1129), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - STATE(775), 2, - sym_extended_name, - sym_literal, - [78485] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(965), 1, - sym_float_number_literal, - ACTIONS(967), 1, - sym_number_literal, - ACTIONS(969), 1, - anon_sym_DQUOTE, - ACTIONS(971), 1, - anon_sym_SQUOTE, - ACTIONS(2443), 1, - sym_name_identifier, - ACTIONS(3307), 1, - anon_sym_LPAREN, - STATE(1779), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2391), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(959), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(706), 2, - sym_extended_name, - sym_literal, - STATE(713), 2, - sym_string_literal, - sym_char_literal, - [78542] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3309), 1, - anon_sym_AMP, - STATE(1454), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 16, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [78577] = 4, + [79577] = 4, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3311), 4, + ACTIONS(3332), 7, ts_builtin_sym_end, + anon_sym_COLON, + anon_sym_EQ, anon_sym_LPAREN, sym_typeclass_identifier, sym_type_identifier, - ACTIONS(3313), 15, + sym_abstract_type_identifier, + ACTIONS(3334), 15, anon_sym_namespace, anon_sym_partition, anon_sym_use, @@ -90076,127 +92467,1357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, sym_name_identifier, - [78608] = 17, + [79611] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, + ACTIONS(1775), 1, sym_float_number_literal, - ACTIONS(2197), 1, + ACTIONS(1777), 1, sym_number_literal, - ACTIONS(2199), 1, + ACTIONS(1779), 1, anon_sym_DQUOTE, - ACTIONS(2201), 1, + ACTIONS(1781), 1, anon_sym_SQUOTE, - ACTIONS(3315), 1, + ACTIONS(2674), 1, + sym_name_identifier, + ACTIONS(3336), 1, anon_sym_LPAREN, - STATE(1800), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(751), 1, + sym_extended_name, + STATE(1283), 1, + sym_name_expression, + STATE(1317), 1, + sym_subexpression_token, + STATE(1948), 1, aux_sym_name_expression_repeat1, - STATE(2363), 1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2503), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(2189), 2, + ACTIONS(1771), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1632), 2, + STATE(1344), 2, sym_string_literal, sym_char_literal, - STATE(1663), 2, - sym_extended_name, + STATE(1342), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - [78665] = 17, + [79675] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(1285), 1, + ACTIONS(447), 1, sym_float_number_literal, - ACTIONS(1287), 1, + ACTIONS(449), 1, sym_number_literal, - ACTIONS(1289), 1, + ACTIONS(451), 1, anon_sym_DQUOTE, - ACTIONS(1291), 1, + ACTIONS(453), 1, anon_sym_SQUOTE, - ACTIONS(2435), 1, + ACTIONS(2800), 1, sym_name_identifier, - ACTIONS(3317), 1, + ACTIONS(3338), 1, anon_sym_LPAREN, - STATE(1785), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(745), 1, + sym_extended_name, + STATE(857), 1, + sym_name_expression, + STATE(887), 1, + sym_subexpression_token, + STATE(1970), 1, aux_sym_name_expression_repeat1, - STATE(2380), 1, + STATE(2308), 1, + aux_sym_name_expression_repeat2, + STATE(2489), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1279), 2, + ACTIONS(441), 2, anon_sym_TILDE, anon_sym_AT, - STATE(779), 2, - sym_extended_name, - sym_literal, - STATE(857), 2, + STATE(876), 2, sym_string_literal, sym_char_literal, - [78722] = 17, + STATE(875), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79739] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(933), 1, - anon_sym_SQUOTE, - ACTIONS(2694), 1, + ACTIONS(2598), 1, sym_name_identifier, - ACTIONS(3319), 1, + ACTIONS(2992), 1, + sym_float_number_literal, + ACTIONS(2994), 1, + sym_number_literal, + ACTIONS(2996), 1, + anon_sym_DQUOTE, + ACTIONS(2998), 1, + anon_sym_SQUOTE, + ACTIONS(3340), 1, anon_sym_LPAREN, + STATE(1817), 1, + sym_extended_name, + STATE(1879), 1, + sym_name_expression, + STATE(1924), 1, + sym_subexpression_token, + STATE(1991), 1, + aux_sym_name_expression_repeat1, + STATE(2236), 1, + aux_sym_name_expression_repeat2, + STATE(2495), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2988), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1925), 2, + sym_string_literal, + sym_char_literal, + STATE(1938), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79803] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1689), 1, + sym_float_number_literal, + ACTIONS(1691), 1, + sym_number_literal, + ACTIONS(1693), 1, + anon_sym_DQUOTE, + ACTIONS(1695), 1, + anon_sym_SQUOTE, + ACTIONS(2608), 1, + sym_name_identifier, + ACTIONS(3342), 1, + anon_sym_LPAREN, + STATE(1036), 1, + sym_extended_name, + STATE(1281), 1, + sym_name_expression, + STATE(1354), 1, + sym_subexpression_token, + STATE(1997), 1, + aux_sym_name_expression_repeat1, + STATE(2261), 1, + aux_sym_name_expression_repeat2, + STATE(2527), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1685), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1331), 2, + sym_string_literal, + sym_char_literal, + STATE(1339), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79867] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2455), 1, + sym_name_identifier, + ACTIONS(2746), 1, + sym_float_number_literal, + ACTIONS(2748), 1, + sym_number_literal, + ACTIONS(2750), 1, + anon_sym_DQUOTE, + ACTIONS(2752), 1, + anon_sym_SQUOTE, + ACTIONS(3344), 1, + anon_sym_LPAREN, + STATE(1761), 1, + sym_extended_name, + STATE(1784), 1, + sym_name_expression, + STATE(1905), 1, + sym_subexpression_token, + STATE(2021), 1, + aux_sym_name_expression_repeat1, + STATE(2215), 1, + aux_sym_name_expression_repeat2, + STATE(2491), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2742), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1902), 2, + sym_string_literal, + sym_char_literal, + STATE(1900), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79931] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(969), 1, + sym_float_number_literal, + ACTIONS(971), 1, + sym_number_literal, + ACTIONS(973), 1, + anon_sym_DQUOTE, + ACTIONS(975), 1, + anon_sym_SQUOTE, + ACTIONS(2850), 1, + sym_name_identifier, + ACTIONS(3346), 1, + anon_sym_LPAREN, + STATE(850), 1, + sym_extended_name, + STATE(904), 1, + sym_name_expression, + STATE(1038), 1, + sym_subexpression_token, + STATE(1972), 1, + aux_sym_name_expression_repeat1, + STATE(2314), 1, + aux_sym_name_expression_repeat2, + STATE(2528), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(963), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1097), 2, + sym_string_literal, + sym_char_literal, + STATE(1095), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [79995] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(785), 1, + sym_float_number_literal, + ACTIONS(787), 1, + sym_number_literal, + ACTIONS(789), 1, + anon_sym_DQUOTE, + ACTIONS(791), 1, + anon_sym_SQUOTE, + ACTIONS(2606), 1, + sym_name_identifier, + ACTIONS(3348), 1, + anon_sym_LPAREN, + STATE(750), 1, + sym_extended_name, + STATE(981), 1, + sym_name_expression, + STATE(1012), 1, + sym_subexpression_token, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2470), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(779), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(999), 2, + sym_string_literal, + sym_char_literal, + STATE(1000), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80059] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1061), 1, + sym_float_number_literal, + ACTIONS(1063), 1, + sym_number_literal, + ACTIONS(1065), 1, + anon_sym_DQUOTE, + ACTIONS(1067), 1, + anon_sym_SQUOTE, + ACTIONS(2716), 1, + sym_name_identifier, + ACTIONS(3350), 1, + anon_sym_LPAREN, + STATE(768), 1, + sym_extended_name, + STATE(963), 1, + sym_name_expression, + STATE(1130), 1, + sym_subexpression_token, + STATE(1980), 1, + aux_sym_name_expression_repeat1, + STATE(2176), 1, + aux_sym_name_expression_repeat2, + STATE(2492), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1055), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1114), 2, + sym_string_literal, + sym_char_literal, + STATE(1116), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80123] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2566), 1, + sym_name_identifier, + ACTIONS(2788), 1, + sym_float_number_literal, + ACTIONS(2790), 1, + sym_number_literal, + ACTIONS(2792), 1, + anon_sym_DQUOTE, + ACTIONS(2794), 1, + anon_sym_SQUOTE, + ACTIONS(3352), 1, + anon_sym_LPAREN, + STATE(1749), 1, + sym_extended_name, + STATE(1807), 1, + sym_name_expression, + STATE(1884), 1, + sym_subexpression_token, + STATE(1968), 1, + aux_sym_name_expression_repeat1, + STATE(2303), 1, + aux_sym_name_expression_repeat2, + STATE(2533), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2782), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1889), 2, + sym_string_literal, + sym_char_literal, + STATE(1888), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80187] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1861), 1, + sym_float_number_literal, + ACTIONS(1863), 1, + sym_number_literal, + ACTIONS(1865), 1, + anon_sym_DQUOTE, + ACTIONS(1867), 1, + anon_sym_SQUOTE, + ACTIONS(2457), 1, + sym_name_identifier, + ACTIONS(3354), 1, + anon_sym_LPAREN, + STATE(1298), 1, + sym_extended_name, + STATE(1340), 1, + sym_name_expression, + STATE(1361), 1, + sym_subexpression_token, + STATE(2007), 1, + aux_sym_name_expression_repeat1, + STATE(2228), 1, + aux_sym_name_expression_repeat2, + STATE(2496), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1857), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1372), 2, + sym_string_literal, + sym_char_literal, + STATE(1363), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80251] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(357), 1, + sym_float_number_literal, + ACTIONS(359), 1, + sym_number_literal, + ACTIONS(361), 1, + anon_sym_DQUOTE, + ACTIONS(363), 1, + anon_sym_SQUOTE, + ACTIONS(2664), 1, + sym_name_identifier, + ACTIONS(3356), 1, + anon_sym_LPAREN, + STATE(694), 1, + sym_extended_name, + STATE(749), 1, + sym_name_expression, + STATE(866), 1, + sym_subexpression_token, + STATE(1969), 1, + aux_sym_name_expression_repeat1, + STATE(2304), 1, + aux_sym_name_expression_repeat2, + STATE(2547), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(351), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(860), 2, + sym_string_literal, + sym_char_literal, + STATE(782), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80315] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1343), 1, + sym_float_number_literal, + ACTIONS(1345), 1, + sym_number_literal, + ACTIONS(1347), 1, + anon_sym_DQUOTE, + ACTIONS(1349), 1, + anon_sym_SQUOTE, + ACTIONS(2481), 1, + sym_name_identifier, + ACTIONS(3358), 1, + anon_sym_LPAREN, + STATE(973), 1, + sym_extended_name, + STATE(1086), 1, + sym_name_expression, + STATE(1253), 1, + sym_subexpression_token, + STATE(1950), 1, + aux_sym_name_expression_repeat1, + STATE(2227), 1, + aux_sym_name_expression_repeat2, + STATE(2550), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1339), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1265), 2, + sym_string_literal, + sym_char_literal, + STATE(1264), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80379] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(727), 1, + sym_float_number_literal, + ACTIONS(729), 1, + sym_number_literal, + ACTIONS(731), 1, + anon_sym_DQUOTE, + ACTIONS(733), 1, + anon_sym_SQUOTE, + ACTIONS(2604), 1, + sym_name_identifier, + ACTIONS(3360), 1, + anon_sym_LPAREN, + STATE(807), 1, + sym_extended_name, + STATE(951), 1, + sym_name_expression, + STATE(1160), 1, + sym_subexpression_token, + STATE(2005), 1, + aux_sym_name_expression_repeat1, + STATE(2219), 1, + aux_sym_name_expression_repeat2, + STATE(2538), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(723), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1084), 2, + sym_string_literal, + sym_char_literal, + STATE(1088), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80443] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1275), 1, + sym_float_number_literal, + ACTIONS(1277), 1, + sym_number_literal, + ACTIONS(1279), 1, + anon_sym_DQUOTE, + ACTIONS(1281), 1, + anon_sym_SQUOTE, + ACTIONS(2513), 1, + sym_name_identifier, + ACTIONS(3362), 1, + anon_sym_LPAREN, + STATE(737), 1, + sym_extended_name, + STATE(1026), 1, + sym_name_expression, + STATE(1248), 1, + sym_subexpression_token, + STATE(1951), 1, + aux_sym_name_expression_repeat1, + STATE(2264), 1, + aux_sym_name_expression_repeat2, + STATE(2519), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1269), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1268), 2, + sym_string_literal, + sym_char_literal, + STATE(1260), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80507] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2333), 1, + sym_float_number_literal, + ACTIONS(2335), 1, + sym_number_literal, + ACTIONS(2337), 1, + anon_sym_DQUOTE, + ACTIONS(2339), 1, + anon_sym_SQUOTE, + ACTIONS(2814), 1, + sym_name_identifier, + ACTIONS(3364), 1, + anon_sym_LPAREN, + STATE(1617), 1, + sym_extended_name, + STATE(1771), 1, + sym_name_expression, STATE(1790), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + sym_subexpression_token, + STATE(1944), 1, aux_sym_name_expression_repeat1, - STATE(2367), 1, + STATE(2244), 1, + aux_sym_name_expression_repeat2, + STATE(2500), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1763), 2, + ACTIONS(2329), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1193), 2, - sym_extended_name, - sym_literal, - STATE(1226), 2, + STATE(1800), 2, sym_string_literal, sym_char_literal, - [78779] = 17, + STATE(1787), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80571] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2515), 1, + sym_name_identifier, + ACTIONS(2928), 1, + sym_float_number_literal, + ACTIONS(2930), 1, + sym_number_literal, + ACTIONS(2932), 1, + anon_sym_DQUOTE, + ACTIONS(2934), 1, + anon_sym_SQUOTE, + ACTIONS(3366), 1, + anon_sym_LPAREN, + STATE(1839), 1, + sym_extended_name, + STATE(1856), 1, + sym_name_expression, + STATE(1914), 1, + sym_subexpression_token, + STATE(1945), 1, + aux_sym_name_expression_repeat1, + STATE(2233), 1, + aux_sym_name_expression_repeat2, + STATE(2526), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2924), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1919), 2, + sym_string_literal, + sym_char_literal, + STATE(1918), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80635] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(877), 1, + sym_float_number_literal, + ACTIONS(879), 1, + sym_number_literal, + ACTIONS(881), 1, + anon_sym_DQUOTE, + ACTIONS(883), 1, + anon_sym_SQUOTE, + ACTIONS(3368), 1, + anon_sym_LPAREN, + ACTIONS(3372), 1, + sym_name_identifier, + STATE(615), 1, + sym_extended_name, + STATE(635), 1, + sym_name_expression, + STATE(663), 1, + sym_subexpression_token, + STATE(1946), 1, + aux_sym_name_expression_repeat1, + STATE(2204), 1, + aux_sym_name_expression_repeat2, + STATE(2546), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3370), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(657), 2, + sym_string_literal, + sym_char_literal, + STATE(658), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80699] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(3374), 1, + anon_sym_LPAREN, + ACTIONS(3378), 1, + sym_name_identifier, + STATE(588), 1, + sym_extended_name, + STATE(601), 1, + sym_subexpression_token, + STATE(612), 1, + sym_name_expression, + STATE(1941), 1, + aux_sym_name_expression_repeat1, + STATE(2203), 1, + aux_sym_name_expression_repeat2, + STATE(2515), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3376), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80763] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1587), 1, + sym_float_number_literal, + ACTIONS(1589), 1, + sym_number_literal, + ACTIONS(1591), 1, + anon_sym_DQUOTE, + ACTIONS(1593), 1, + anon_sym_SQUOTE, + ACTIONS(2718), 1, + sym_name_identifier, + ACTIONS(3380), 1, + anon_sym_LPAREN, + STATE(1178), 1, + sym_extended_name, + STATE(1216), 1, + sym_name_expression, + STATE(1346), 1, + sym_subexpression_token, + STATE(2020), 1, + aux_sym_name_expression_repeat1, + STATE(2231), 1, + aux_sym_name_expression_repeat2, + STATE(2504), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1583), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1348), 2, + sym_string_literal, + sym_char_literal, + STATE(1349), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80827] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1329), 1, + sym_float_number_literal, + ACTIONS(1331), 1, + sym_number_literal, + ACTIONS(1333), 1, + anon_sym_DQUOTE, + ACTIONS(1335), 1, + anon_sym_SQUOTE, + ACTIONS(2600), 1, + sym_name_identifier, + ACTIONS(3382), 1, + anon_sym_LPAREN, + STATE(926), 1, + sym_extended_name, + STATE(1170), 1, + sym_name_expression, + STATE(1206), 1, + sym_subexpression_token, + STATE(1961), 1, + aux_sym_name_expression_repeat1, + STATE(2271), 1, + aux_sym_name_expression_repeat2, + STATE(2469), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1325), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1218), 2, + sym_string_literal, + sym_char_literal, + STATE(1217), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80891] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1461), 1, + sym_float_number_literal, + ACTIONS(1463), 1, + sym_number_literal, + ACTIONS(1465), 1, + anon_sym_DQUOTE, + ACTIONS(1467), 1, + anon_sym_SQUOTE, + ACTIONS(2844), 1, + sym_name_identifier, + ACTIONS(3384), 1, + anon_sym_LPAREN, + STATE(914), 1, + sym_extended_name, + STATE(1159), 1, + sym_name_expression, + STATE(1272), 1, + sym_subexpression_token, + STATE(1974), 1, + aux_sym_name_expression_repeat1, + STATE(2318), 1, + aux_sym_name_expression_repeat2, + STATE(2467), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1457), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1279), 2, + sym_string_literal, + sym_char_literal, + STATE(1247), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [80955] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + ACTIONS(3386), 1, + anon_sym_LPAREN, + ACTIONS(3390), 1, + sym_name_identifier, + STATE(632), 1, + sym_extended_name, + STATE(671), 1, + sym_subexpression_token, + STATE(676), 1, + sym_name_expression, + STATE(1990), 1, + aux_sym_name_expression_repeat1, + STATE(2273), 1, + aux_sym_name_expression_repeat2, + STATE(2471), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3388), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81019] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(481), 1, + sym_float_number_literal, + ACTIONS(483), 1, + sym_number_literal, + ACTIONS(485), 1, + anon_sym_DQUOTE, + ACTIONS(487), 1, + anon_sym_SQUOTE, + ACTIONS(2856), 1, + sym_name_identifier, + ACTIONS(3392), 1, + anon_sym_LPAREN, + STATE(778), 1, + sym_extended_name, + STATE(794), 1, + sym_name_expression, + STATE(942), 1, + sym_subexpression_token, + STATE(1981), 1, + aux_sym_name_expression_repeat1, + STATE(2302), 1, + aux_sym_name_expression_repeat2, + STATE(2540), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(475), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(961), 2, + sym_string_literal, + sym_char_literal, + STATE(953), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81083] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2495), 1, + sym_float_number_literal, + ACTIONS(2497), 1, + sym_number_literal, + ACTIONS(2499), 1, + anon_sym_DQUOTE, + ACTIONS(2501), 1, + anon_sym_SQUOTE, + ACTIONS(2712), 1, + anon_sym_LPAREN, + ACTIONS(2716), 1, + sym_name_identifier, + STATE(671), 1, + sym_subexpression_token, + STATE(768), 1, + sym_extended_name, + STATE(1980), 1, + aux_sym_name_expression_repeat1, + STATE(2176), 1, + aux_sym_name_expression_repeat2, + STATE(2464), 1, + sym_name_expression, + STATE(2492), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1055), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(679), 2, + sym_string_literal, + sym_char_literal, + STATE(678), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81147] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(379), 1, + sym_float_number_literal, + ACTIONS(381), 1, + sym_number_literal, + ACTIONS(383), 1, + anon_sym_DQUOTE, + ACTIONS(385), 1, + anon_sym_SQUOTE, + ACTIONS(2720), 1, + sym_name_identifier, + ACTIONS(3394), 1, + anon_sym_LPAREN, + STATE(717), 1, + sym_extended_name, + STATE(813), 1, + sym_name_expression, + STATE(896), 1, + sym_subexpression_token, + STATE(2009), 1, + aux_sym_name_expression_repeat1, + STATE(2252), 1, + aux_sym_name_expression_repeat2, + STATE(2498), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(373), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(930), 2, + sym_string_literal, + sym_char_literal, + STATE(925), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81211] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(697), 1, + sym_float_number_literal, + ACTIONS(699), 1, + sym_number_literal, + ACTIONS(701), 1, + anon_sym_DQUOTE, + ACTIONS(703), 1, + anon_sym_SQUOTE, + ACTIONS(3396), 1, + anon_sym_LPAREN, + ACTIONS(3400), 1, + sym_name_identifier, + STATE(683), 1, + sym_extended_name, + STATE(708), 1, + sym_subexpression_token, + STATE(736), 1, + sym_name_expression, + STATE(1992), 1, + aux_sym_name_expression_repeat1, + STATE(2207), 1, + aux_sym_name_expression_repeat2, + STATE(2510), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3398), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81275] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(2682), 1, + anon_sym_LPAREN, + ACTIONS(2686), 1, + sym_name_identifier, + STATE(636), 1, + sym_subexpression_token, + STATE(723), 1, + sym_extended_name, + STATE(1976), 1, + aux_sym_name_expression_repeat1, + STATE(2320), 1, + aux_sym_name_expression_repeat2, + STATE(2380), 1, + sym_name_expression, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(459), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81339] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2658), 1, + anon_sym_LPAREN, + ACTIONS(2664), 1, + sym_name_identifier, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + STATE(623), 1, + sym_subexpression_token, + STATE(694), 1, + sym_extended_name, + STATE(1969), 1, + aux_sym_name_expression_repeat1, + STATE(2258), 1, + sym_name_expression, + STATE(2304), 1, + aux_sym_name_expression_repeat2, + STATE(2547), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(351), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81403] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2479), 1, + sym_name_identifier, + ACTIONS(2894), 1, + sym_float_number_literal, + ACTIONS(2896), 1, + sym_number_literal, + ACTIONS(2898), 1, + anon_sym_DQUOTE, + ACTIONS(2900), 1, + anon_sym_SQUOTE, + ACTIONS(3402), 1, + anon_sym_LPAREN, + STATE(1721), 1, + sym_extended_name, + STATE(1823), 1, + sym_name_expression, + STATE(1869), 1, + sym_subexpression_token, + STATE(1942), 1, + aux_sym_name_expression_repeat1, + STATE(2194), 1, + aux_sym_name_expression_repeat2, + STATE(2493), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2888), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1874), 2, + sym_string_literal, + sym_char_literal, + STATE(1873), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81467] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(2235), 1, + sym_float_number_literal, + ACTIONS(2237), 1, + sym_number_literal, + ACTIONS(2239), 1, + anon_sym_DQUOTE, + ACTIONS(2241), 1, + anon_sym_SQUOTE, + ACTIONS(3404), 1, + anon_sym_LPAREN, + STATE(1594), 1, + sym_extended_name, + STATE(1621), 1, + sym_name_expression, + STATE(1742), 1, + sym_subexpression_token, + STATE(2003), 1, + aux_sym_name_expression_repeat1, + STATE(2223), 1, + aux_sym_name_expression_repeat2, + STATE(2476), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2229), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1702), 2, + sym_string_literal, + sym_char_literal, + STATE(1743), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81531] = 19, ACTIONS(5), 1, sym__doc_comment, ACTIONS(841), 1, @@ -90207,1951 +93828,1037 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(847), 1, anon_sym_SQUOTE, - ACTIONS(2574), 1, - sym_name_identifier, - ACTIONS(3321), 1, - anon_sym_LPAREN, - STATE(1691), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2339), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1523), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - STATE(1149), 2, - sym_extended_name, - sym_literal, - [78836] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(1079), 1, - anon_sym_SQUOTE, - ACTIONS(2748), 1, - sym_name_identifier, - ACTIONS(3323), 1, - anon_sym_LPAREN, - STATE(1674), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2332), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1593), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1050), 2, - sym_extended_name, - sym_literal, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - [78893] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2119), 1, - sym_name_identifier, - ACTIONS(2123), 1, - sym_float_number_literal, - ACTIONS(2125), 1, - sym_number_literal, - ACTIONS(2127), 1, - anon_sym_DQUOTE, - ACTIONS(2129), 1, - anon_sym_SQUOTE, - ACTIONS(3325), 1, - anon_sym_LPAREN, - STATE(1793), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2369), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2117), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1525), 2, - sym_extended_name, - sym_literal, - STATE(1550), 2, - sym_string_literal, - sym_char_literal, - [78950] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3329), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3327), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_LPAREN, - sym_abstract_type_identifier, - [78981] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(497), 1, - sym_float_number_literal, - ACTIONS(499), 1, - sym_number_literal, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(503), 1, - anon_sym_SQUOTE, - ACTIONS(2484), 1, - sym_name_identifier, - ACTIONS(3331), 1, - anon_sym_LPAREN, - STATE(1802), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2319), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(491), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(669), 2, - sym_extended_name, - sym_literal, - STATE(679), 2, - sym_string_literal, - sym_char_literal, - [79038] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3335), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3333), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_LPAREN, - sym_abstract_type_identifier, - [79069] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(1033), 1, - anon_sym_SQUOTE, - ACTIONS(2696), 1, - sym_name_identifier, - ACTIONS(3337), 1, - anon_sym_LPAREN, - STATE(1816), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2373), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1367), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(865), 2, - sym_extended_name, - sym_literal, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - [79126] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2259), 1, - sym_float_number_literal, - ACTIONS(2261), 1, - sym_number_literal, - ACTIONS(2263), 1, - anon_sym_DQUOTE, - ACTIONS(2265), 1, - anon_sym_SQUOTE, - ACTIONS(2682), 1, - sym_name_identifier, - ACTIONS(3339), 1, - anon_sym_LPAREN, - STATE(1807), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2333), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2253), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1569), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - [79183] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3343), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3341), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - [79214] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3213), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3211), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - [79245] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(715), 1, - anon_sym_SQUOTE, - ACTIONS(2393), 1, - sym_name_identifier, - ACTIONS(3345), 1, - anon_sym_LPAREN, - STATE(1695), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2338), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2752), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1916), 2, - sym_extended_name, - sym_literal, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - [79302] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(1541), 1, - anon_sym_SQUOTE, - ACTIONS(2413), 1, - sym_name_identifier, - ACTIONS(3347), 1, - anon_sym_LPAREN, - STATE(1766), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2341), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1529), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1021), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - [79359] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1199), 1, - sym_float_number_literal, - ACTIONS(1201), 1, - sym_number_literal, - ACTIONS(1203), 1, - anon_sym_DQUOTE, - ACTIONS(1205), 1, - anon_sym_SQUOTE, - ACTIONS(2716), 1, - sym_name_identifier, - ACTIONS(3349), 1, - anon_sym_LPAREN, - STATE(1815), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2326), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1193), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(798), 2, - sym_string_literal, - sym_char_literal, - STATE(811), 2, - sym_extended_name, - sym_literal, - [79416] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3351), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1977), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - ACTIONS(1975), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [79449] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(1153), 1, - anon_sym_SQUOTE, - ACTIONS(2311), 1, - sym_name_identifier, - ACTIONS(3353), 1, - anon_sym_LPAREN, - STATE(1837), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2379), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2309), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1613), 2, - sym_extended_name, - sym_literal, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - [79506] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(563), 1, - anon_sym_SQUOTE, - ACTIONS(2640), 1, - sym_name_identifier, - ACTIONS(3355), 1, - anon_sym_LPAREN, - STATE(1673), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2325), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1833), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - STATE(1278), 2, - sym_extended_name, - sym_literal, - [79563] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3357), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3065), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - [79594] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(587), 1, - anon_sym_SQUOTE, - ACTIONS(2564), 1, - sym_name_identifier, - ACTIONS(3359), 1, - anon_sym_LPAREN, - STATE(1824), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2321), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1117), 2, - sym_extended_name, - sym_literal, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - [79651] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(649), 1, - anon_sym_SQUOTE, - ACTIONS(2367), 1, - sym_name_identifier, - ACTIONS(3361), 1, - anon_sym_LPAREN, - STATE(1698), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2376), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2910), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1945), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - [79708] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3195), 1, - anon_sym_PIPE, - ACTIONS(3365), 1, - anon_sym_type, - STATE(1456), 1, - aux_sym_variant_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3363), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - [79743] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3369), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3367), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - [79774] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(905), 1, - sym_float_number_literal, - ACTIONS(907), 1, - sym_number_literal, - ACTIONS(909), 1, - anon_sym_DQUOTE, - ACTIONS(911), 1, - anon_sym_SQUOTE, - ACTIONS(2704), 1, - sym_name_identifier, - ACTIONS(3371), 1, - anon_sym_LPAREN, - STATE(1832), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2334), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(899), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(688), 2, - sym_extended_name, - sym_literal, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - [79831] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3373), 1, - anon_sym_AMP, - STATE(1443), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [79866] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(209), 1, - anon_sym_SQUOTE, - ACTIONS(2668), 1, - sym_name_identifier, - ACTIONS(3375), 1, - anon_sym_LPAREN, - STATE(1743), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2327), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1965), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1321), 2, - sym_extended_name, - sym_literal, - [79923] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3377), 1, - anon_sym_AMP, - STATE(1443), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [79958] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(781), 1, - anon_sym_SQUOTE, - ACTIONS(2570), 1, - sym_name_identifier, - ACTIONS(3380), 1, - anon_sym_LPAREN, - STATE(1829), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2340), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2568), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1725), 2, - sym_extended_name, - sym_literal, - [80015] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(955), 1, - anon_sym_SQUOTE, - ACTIONS(2369), 1, - sym_name_identifier, - ACTIONS(3382), 1, - anon_sym_LPAREN, - STATE(1804), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2350), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1477), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1054), 2, - sym_extended_name, - sym_literal, - [80072] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3384), 1, - anon_sym_AMP, - STATE(1451), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - [80107] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3386), 1, - anon_sym_AMP, - STATE(1448), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 17, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [80140] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3388), 1, - anon_sym_AMP, - STATE(1448), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 17, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [80173] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(759), 1, - anon_sym_SQUOTE, - ACTIONS(2486), 1, - sym_name_identifier, - ACTIONS(3391), 1, - anon_sym_LPAREN, - STATE(1768), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2330), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(1157), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - STATE(848), 2, - sym_extended_name, - sym_literal, - [80230] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2399), 1, - sym_name_identifier, - ACTIONS(2401), 1, - sym_float_number_literal, - ACTIONS(2403), 1, - sym_number_literal, - ACTIONS(2405), 1, - anon_sym_DQUOTE, - ACTIONS(2407), 1, - anon_sym_SQUOTE, - ACTIONS(3393), 1, - anon_sym_LPAREN, - STATE(1733), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2365), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2814), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1899), 2, - sym_extended_name, - sym_literal, - STATE(1931), 2, - sym_string_literal, - sym_char_literal, - [80287] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3384), 1, - anon_sym_AMP, - STATE(1452), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - [80322] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3395), 1, - anon_sym_AMP, - STATE(1452), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - [80357] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3386), 1, - anon_sym_AMP, - STATE(1447), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 17, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [80390] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3309), 1, - anon_sym_AMP, - STATE(1455), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 16, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [80425] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3398), 1, - anon_sym_AMP, - STATE(1455), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 16, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [80460] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3185), 1, - anon_sym_type, - ACTIONS(3401), 1, - anon_sym_PIPE, - STATE(1456), 1, - aux_sym_variant_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3183), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_RPAREN, - [80495] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2618), 1, - sym_name_identifier, - ACTIONS(2620), 1, - sym_float_number_literal, - ACTIONS(2622), 1, - sym_number_literal, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - ACTIONS(2626), 1, - anon_sym_SQUOTE, - ACTIONS(3404), 1, - anon_sym_LPAREN, - STATE(1679), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2378), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(2878), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1876), 2, - sym_extended_name, - sym_literal, - STATE(1893), 2, - sym_string_literal, - sym_char_literal, - [80552] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - anon_sym_SQUOTE, - ACTIONS(2686), 1, + ACTIONS(2736), 1, sym_name_identifier, ACTIONS(3406), 1, anon_sym_LPAREN, - STATE(1791), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(833), 1, + sym_extended_name, + STATE(906), 1, + sym_name_expression, + STATE(1176), 1, + sym_subexpression_token, + STATE(1964), 1, aux_sym_name_expression_repeat1, - STATE(2385), 1, + STATE(2282), 1, + aux_sym_name_expression_repeat2, + STATE(2506), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1687), 2, + ACTIONS(835), 2, anon_sym_TILDE, anon_sym_AT, - STATE(971), 2, + STATE(1199), 2, sym_string_literal, sym_char_literal, - STATE(985), 2, - sym_extended_name, + STATE(1198), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - [80609] = 17, + [81595] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(533), 1, + ACTIONS(1627), 1, sym_float_number_literal, - ACTIONS(535), 1, + ACTIONS(1629), 1, sym_number_literal, - ACTIONS(537), 1, + ACTIONS(1631), 1, anon_sym_DQUOTE, - ACTIONS(539), 1, + ACTIONS(1633), 1, anon_sym_SQUOTE, - ACTIONS(2632), 1, + ACTIONS(2465), 1, sym_name_identifier, ACTIONS(3408), 1, anon_sym_LPAREN, - STATE(1770), 1, - aux_sym_name_expression_repeat2, + STATE(996), 1, + sym_extended_name, + STATE(1291), 1, + sym_name_expression, + STATE(1316), 1, + sym_subexpression_token, STATE(1999), 1, aux_sym_name_expression_repeat1, - STATE(2360), 1, + STATE(2257), 1, + aux_sym_name_expression_repeat2, + STATE(2472), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1209), 2, + ACTIONS(1621), 2, anon_sym_TILDE, anon_sym_AT, - STATE(822), 2, - sym_extended_name, - sym_literal, - STATE(887), 2, + STATE(1333), 2, sym_string_literal, sym_char_literal, - [80666] = 17, + STATE(1328), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81659] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2357), 1, - sym_name_identifier, - ACTIONS(2359), 1, + ACTIONS(2183), 1, sym_float_number_literal, - ACTIONS(2361), 1, + ACTIONS(2185), 1, sym_number_literal, - ACTIONS(2363), 1, + ACTIONS(2187), 1, anon_sym_DQUOTE, - ACTIONS(2365), 1, + ACTIONS(2189), 1, anon_sym_SQUOTE, + ACTIONS(2836), 1, + sym_name_identifier, ACTIONS(3410), 1, anon_sym_LPAREN, - STATE(1700), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(1578), 1, + sym_extended_name, + STATE(1649), 1, + sym_name_expression, + STATE(1733), 1, + sym_subexpression_token, + STATE(1966), 1, aux_sym_name_expression_repeat1, - STATE(2388), 1, + STATE(2293), 1, + aux_sym_name_expression_repeat2, + STATE(2539), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(2870), 2, + ACTIONS(2177), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1865), 2, - sym_extended_name, - sym_literal, - STATE(1872), 2, + STATE(1700), 2, sym_string_literal, sym_char_literal, - [80723] = 4, + STATE(1699), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81723] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3414), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3412), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_EQ, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_LPAREN, - sym_abstract_type_identifier, - [80754] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3418), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3416), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - [80785] = 17, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(819), 1, + ACTIONS(751), 1, sym_float_number_literal, - ACTIONS(821), 1, + ACTIONS(753), 1, sym_number_literal, - ACTIONS(823), 1, + ACTIONS(755), 1, anon_sym_DQUOTE, - ACTIONS(825), 1, + ACTIONS(757), 1, anon_sym_SQUOTE, - ACTIONS(2584), 1, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(2606), 1, + sym_name_identifier, + STATE(703), 1, + sym_subexpression_token, + STATE(750), 1, + sym_extended_name, + STATE(1958), 1, + aux_sym_name_expression_repeat1, + STATE(2251), 1, + aux_sym_name_expression_repeat2, + STATE(2450), 1, + sym_name_expression, + STATE(2470), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(779), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81787] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(465), 1, + sym_float_number_literal, + ACTIONS(467), 1, + sym_number_literal, + ACTIONS(469), 1, + anon_sym_DQUOTE, + ACTIONS(471), 1, + anon_sym_SQUOTE, + ACTIONS(2686), 1, + sym_name_identifier, + ACTIONS(3412), 1, + anon_sym_LPAREN, + STATE(723), 1, + sym_extended_name, + STATE(818), 1, + sym_name_expression, + STATE(979), 1, + sym_subexpression_token, + STATE(1976), 1, + aux_sym_name_expression_repeat1, + STATE(2320), 1, + aux_sym_name_expression_repeat2, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(459), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(972), 2, + sym_string_literal, + sym_char_literal, + STATE(974), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81851] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2640), 1, + sym_float_number_literal, + ACTIONS(2642), 1, + sym_number_literal, + ACTIONS(2644), 1, + anon_sym_DQUOTE, + ACTIONS(2646), 1, + anon_sym_SQUOTE, + ACTIONS(3414), 1, + anon_sym_LPAREN, + ACTIONS(3418), 1, + sym_name_identifier, + STATE(624), 1, + sym_extended_name, + STATE(631), 1, + sym_name_expression, + STATE(636), 1, + sym_subexpression_token, + STATE(1988), 1, + aux_sym_name_expression_repeat1, + STATE(2278), 1, + aux_sym_name_expression_repeat2, + STATE(2551), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3416), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(630), 2, + sym_string_literal, + sym_char_literal, + STATE(651), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [81915] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1101), 1, + sym_float_number_literal, + ACTIONS(1103), 1, + sym_number_literal, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(2808), 1, sym_name_identifier, ACTIONS(3420), 1, anon_sym_LPAREN, - STATE(1692), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(784), 1, + sym_extended_name, + STATE(970), 1, + sym_name_expression, + STATE(1171), 1, + sym_subexpression_token, + STATE(1983), 1, aux_sym_name_expression_repeat1, - STATE(2389), 1, + STATE(2297), 1, + aux_sym_name_expression_repeat2, + STATE(2484), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1163), 2, + ACTIONS(1095), 2, anon_sym_TILDE, anon_sym_AT, - STATE(929), 2, + STATE(1161), 2, sym_string_literal, sym_char_literal, - STATE(942), 2, - sym_extended_name, + STATE(1167), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - [80842] = 17, + [81979] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2646), 1, + ACTIONS(2507), 1, sym_name_identifier, - ACTIONS(2648), 1, + ACTIONS(2824), 1, sym_float_number_literal, - ACTIONS(2650), 1, + ACTIONS(2826), 1, sym_number_literal, - ACTIONS(2652), 1, + ACTIONS(2828), 1, anon_sym_DQUOTE, - ACTIONS(2654), 1, + ACTIONS(2830), 1, anon_sym_SQUOTE, ACTIONS(3422), 1, anon_sym_LPAREN, - STATE(1731), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + STATE(1708), 1, + sym_extended_name, + STATE(1775), 1, + sym_name_expression, + STATE(1863), 1, + sym_subexpression_token, + STATE(1947), 1, aux_sym_name_expression_repeat1, - STATE(2386), 1, + STATE(2205), 1, + aux_sym_name_expression_repeat2, + STATE(2518), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(2782), 2, + ACTIONS(2818), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1848), 2, - sym_extended_name, - sym_literal, - STATE(1854), 2, + STATE(1867), 2, sym_string_literal, sym_char_literal, - [80899] = 17, + STATE(1866), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82043] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(1799), 1, + ACTIONS(697), 1, sym_float_number_literal, - ACTIONS(1801), 1, + ACTIONS(699), 1, sym_number_literal, - ACTIONS(1803), 1, + ACTIONS(701), 1, anon_sym_DQUOTE, - ACTIONS(1805), 1, + ACTIONS(703), 1, anon_sym_SQUOTE, - ACTIONS(2638), 1, + ACTIONS(989), 1, + anon_sym_LPAREN, + ACTIONS(2654), 1, sym_name_identifier, + STATE(708), 1, + sym_subexpression_token, + STATE(812), 1, + sym_extended_name, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2497), 1, + sym_name_expression, + STATE(2548), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1379), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(721), 2, + sym_string_literal, + sym_char_literal, + STATE(728), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82107] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3316), 1, + anon_sym_RBRACE, ACTIONS(3424), 1, anon_sym_LPAREN, - STATE(1701), 1, - aux_sym_name_expression_repeat2, - STATE(1999), 1, + ACTIONS(3428), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3426), 2, + sym_typeclass_identifier, + sym_type_identifier, + STATE(1444), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1528), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3318), 13, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [82151] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3289), 1, + anon_sym_RBRACE, + ACTIONS(3424), 1, + anon_sym_LPAREN, + ACTIONS(3428), 1, + sym_name_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3426), 2, + sym_typeclass_identifier, + sym_type_identifier, + STATE(1444), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1528), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3291), 13, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [82195] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(2509), 1, + anon_sym_LPAREN, + ACTIONS(2513), 1, + sym_name_identifier, + STATE(577), 1, + sym_subexpression_token, + STATE(737), 1, + sym_extended_name, + STATE(1951), 1, aux_sym_name_expression_repeat1, - STATE(2322), 1, + STATE(2264), 1, + aux_sym_name_expression_repeat2, + STATE(2383), 1, + sym_name_expression, + STATE(2519), 1, aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(169), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(1793), 2, + ACTIONS(1269), 2, anon_sym_TILDE, anon_sym_AT, - STATE(1282), 2, + STATE(570), 2, sym_string_literal, sym_char_literal, - STATE(1293), 2, - sym_extended_name, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, sym_literal, - [80956] = 4, + [82259] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3428), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3426), 18, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - [80987] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3373), 1, - anon_sym_AMP, - STATE(1441), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [81022] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, + ACTIONS(2441), 1, + sym_name_identifier, + ACTIONS(2445), 1, + sym_float_number_literal, + ACTIONS(2447), 1, + sym_number_literal, + ACTIONS(2449), 1, + anon_sym_DQUOTE, + ACTIONS(2451), 1, + anon_sym_SQUOTE, ACTIONS(3430), 1, - anon_sym_AMP, - STATE(1500), 1, - aux_sym_type_constructor_repeat1, + anon_sym_LPAREN, + STATE(1691), 1, + sym_extended_name, + STATE(1750), 1, + sym_name_expression, + STATE(1847), 1, + sym_subexpression_token, + STATE(1952), 1, + aux_sym_name_expression_repeat1, + STATE(2238), 1, + aux_sym_name_expression_repeat2, + STATE(2509), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3247), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [81056] = 6, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2439), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1843), 2, + sym_string_literal, + sym_char_literal, + STATE(1844), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82323] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3434), 1, - anon_sym_type, + ACTIONS(2467), 1, + sym_float_number_literal, + ACTIONS(2469), 1, + sym_number_literal, + ACTIONS(2471), 1, + anon_sym_DQUOTE, + ACTIONS(2473), 1, + anon_sym_SQUOTE, + ACTIONS(3432), 1, + anon_sym_LPAREN, ACTIONS(3436), 1, - anon_sym_QMARK, + sym_name_identifier, + STATE(566), 1, + sym_extended_name, + STATE(577), 1, + sym_subexpression_token, + STATE(579), 1, + sym_name_expression, + STATE(1977), 1, + aux_sym_name_expression_repeat1, + STATE(2189), 1, + aux_sym_name_expression_repeat2, + STATE(2482), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3434), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(570), 2, + sym_string_literal, + sym_char_literal, + STATE(568), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82387] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2391), 1, + sym_name_identifier, + ACTIONS(2395), 1, + sym_float_number_literal, + ACTIONS(2397), 1, + sym_number_literal, + ACTIONS(2399), 1, + anon_sym_DQUOTE, + ACTIONS(2401), 1, + anon_sym_SQUOTE, ACTIONS(3438), 1, - anon_sym_DASH_GT, + anon_sym_LPAREN, + STATE(1680), 1, + sym_extended_name, + STATE(1714), 1, + sym_name_expression, + STATE(1806), 1, + sym_subexpression_token, + STATE(1982), 1, + aux_sym_name_expression_repeat1, + STATE(2256), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3432), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [81090] = 5, - ACTIONS(3), 1, - sym__line_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2389), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1780), 2, + sym_string_literal, + sym_char_literal, + STATE(1779), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82451] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(767), 1, + sym_float_number_literal, + ACTIONS(769), 1, + sym_number_literal, + ACTIONS(771), 1, + anon_sym_DQUOTE, + ACTIONS(773), 1, + anon_sym_SQUOTE, + ACTIONS(2802), 1, + sym_name_identifier, ACTIONS(3440), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, + anon_sym_LPAREN, + STATE(855), 1, + sym_extended_name, + STATE(880), 1, + sym_name_expression, + STATE(1200), 1, + sym_subexpression_token, + STATE(1989), 1, + aux_sym_name_expression_repeat1, + STATE(2274), 1, + aux_sym_name_expression_repeat2, + STATE(2517), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, sym__block_comment, - ACTIONS(1977), 3, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - ACTIONS(1975), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81122] = 6, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(761), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1152), 2, + sym_string_literal, + sym_char_literal, + STATE(1153), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82515] = 19, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(2141), 1, + sym_name_identifier, + ACTIONS(2145), 1, + sym_float_number_literal, + ACTIONS(2147), 1, + sym_number_literal, + ACTIONS(2149), 1, + anon_sym_DQUOTE, + ACTIONS(2151), 1, + anon_sym_SQUOTE, + ACTIONS(3442), 1, + anon_sym_LPAREN, + STATE(1572), 1, + sym_extended_name, + STATE(1653), 1, + sym_name_expression, + STATE(1754), 1, + sym_subexpression_token, + STATE(1984), 1, + aux_sym_name_expression_repeat1, + STATE(2296), 1, + aux_sym_name_expression_repeat2, + STATE(2516), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2139), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1759), 2, + sym_string_literal, + sym_char_literal, + STATE(1758), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82579] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2754), 1, + sym_name_identifier, + ACTIONS(3048), 1, + sym_float_number_literal, + ACTIONS(3050), 1, + sym_number_literal, + ACTIONS(3052), 1, + anon_sym_DQUOTE, + ACTIONS(3054), 1, + anon_sym_SQUOTE, ACTIONS(3444), 1, - anon_sym_type, + anon_sym_LPAREN, + STATE(1818), 1, + sym_extended_name, + STATE(1891), 1, + sym_name_expression, + STATE(1932), 1, + sym_subexpression_token, + STATE(2012), 1, + aux_sym_name_expression_repeat1, + STATE(2246), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3044), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1907), 2, + sym_string_literal, + sym_char_literal, + STATE(1939), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82643] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(397), 1, + sym_float_number_literal, + ACTIONS(399), 1, + sym_number_literal, + ACTIONS(401), 1, + anon_sym_DQUOTE, + ACTIONS(403), 1, + anon_sym_SQUOTE, + ACTIONS(2652), 1, + sym_name_identifier, ACTIONS(3446), 1, - anon_sym_AMP, - STATE(1490), 1, - aux_sym_typeclass_definition_statement_repeat1, + anon_sym_LPAREN, + STATE(769), 1, + sym_extended_name, + STATE(815), 1, + sym_name_expression, + STATE(917), 1, + sym_subexpression_token, + STATE(1960), 1, + aux_sym_name_expression_repeat1, + STATE(2260), 1, + aux_sym_name_expression_repeat2, + STATE(2535), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3442), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81156] = 5, - ACTIONS(3), 1, - sym__line_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(391), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(934), 2, + sym_string_literal, + sym_char_literal, + STATE(931), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82707] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2249), 1, + sym_name_identifier, + ACTIONS(2253), 1, + sym_float_number_literal, + ACTIONS(2255), 1, + sym_number_literal, + ACTIONS(2257), 1, + anon_sym_DQUOTE, + ACTIONS(2259), 1, + anon_sym_SQUOTE, ACTIONS(3448), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, + anon_sym_LPAREN, + STATE(1580), 1, + sym_extended_name, + STATE(1676), 1, + sym_name_expression, + STATE(1767), 1, + sym_subexpression_token, + STATE(1986), 1, + aux_sym_name_expression_repeat1, + STATE(2290), 1, + aux_sym_name_expression_repeat2, + STATE(2490), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, sym__block_comment, - ACTIONS(3224), 3, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3222), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81188] = 7, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2247), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1774), 2, + sym_string_literal, + sym_char_literal, + STATE(1773), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82771] = 19, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(1315), 1, + sym_float_number_literal, + ACTIONS(1317), 1, + sym_number_literal, + ACTIONS(1319), 1, + anon_sym_DQUOTE, + ACTIONS(1321), 1, + anon_sym_SQUOTE, + ACTIONS(2558), 1, + sym_name_identifier, + ACTIONS(3450), 1, + anon_sym_LPAREN, + STATE(950), 1, + sym_extended_name, + STATE(1148), 1, + sym_name_expression, + STATE(1212), 1, + sym_subexpression_token, + STATE(1985), 1, + aux_sym_name_expression_repeat1, + STATE(2292), 1, + aux_sym_name_expression_repeat2, + STATE(2479), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1309), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1222), 2, + sym_string_literal, + sym_char_literal, + STATE(1221), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82835] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2487), 1, + sym_name_identifier, + ACTIONS(2912), 1, + sym_float_number_literal, + ACTIONS(2914), 1, + sym_number_literal, + ACTIONS(2916), 1, + anon_sym_DQUOTE, + ACTIONS(2918), 1, + anon_sym_SQUOTE, ACTIONS(3452), 1, - anon_sym_type, - ACTIONS(3454), 1, - anon_sym_elif, - ACTIONS(3456), 1, - anon_sym_else, - STATE(1477), 1, - aux_sym_condition_repeat1, + anon_sym_LPAREN, + STATE(1753), 1, + sym_extended_name, + STATE(1819), 1, + sym_name_expression, + STATE(1876), 1, + sym_subexpression_token, + STATE(2015), 1, + aux_sym_name_expression_repeat1, + STATE(2183), 1, + aux_sym_name_expression_repeat2, + STATE(2486), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3450), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81224] = 6, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2906), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1882), 2, + sym_string_literal, + sym_char_literal, + STATE(1881), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82899] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3460), 1, - anon_sym_type, - ACTIONS(3462), 1, - anon_sym_PIPE, + ACTIONS(67), 1, + sym_float_number_literal, + ACTIONS(69), 1, + sym_number_literal, + ACTIONS(71), 1, + anon_sym_DQUOTE, + ACTIONS(73), 1, + anon_sym_SQUOTE, + ACTIONS(221), 1, + anon_sym_LPAREN, + ACTIONS(2674), 1, + sym_name_identifier, + STATE(601), 1, + sym_subexpression_token, + STATE(751), 1, + sym_extended_name, + STATE(1948), 1, + aux_sym_name_expression_repeat1, + STATE(2323), 1, + aux_sym_name_expression_repeat2, + STATE(2455), 1, + sym_name_expression, + STATE(2503), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - STATE(1476), 2, - sym_match_case, - aux_sym_match_repeat1, - ACTIONS(3458), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81258] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3464), 1, - sym_operator, - ACTIONS(5), 2, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1771), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(592), 2, + sym_string_literal, + sym_char_literal, + STATE(587), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [82963] = 9, + ACTIONS(5), 1, sym__doc_comment, - sym__block_comment, - ACTIONS(1977), 4, - anon_sym_type, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - ACTIONS(1975), 13, - anon_sym_namespace, + ACTIONS(3303), 1, anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81290] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3468), 1, - anon_sym_type, - ACTIONS(3470), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1476), 2, - sym_match_case, - aux_sym_match_repeat1, - ACTIONS(3466), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81324] = 7, - ACTIONS(5), 1, - sym__doc_comment, ACTIONS(3454), 1, - anon_sym_elif, - ACTIONS(3475), 1, - anon_sym_type, - ACTIONS(3477), 1, - anon_sym_else, - STATE(1498), 1, - aux_sym_condition_repeat1, + anon_sym_LPAREN, + ACTIONS(3460), 1, + sym_name_identifier, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3473), 14, - ts_builtin_sym_end, + ACTIONS(3457), 2, + sym_typeclass_identifier, + sym_type_identifier, + STATE(1444), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1528), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3305), 13, anon_sym_namespace, - anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, + anon_sym_type, anon_sym_let, anon_sym_decl, anon_sym_def, @@ -92160,21 +94867,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [81360] = 4, + [83007] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2079), 1, - anon_sym_type, + ACTIONS(2666), 1, + sym_float_number_literal, + ACTIONS(2668), 1, + sym_number_literal, + ACTIONS(2670), 1, + anon_sym_DQUOTE, + ACTIONS(2672), 1, + anon_sym_SQUOTE, + ACTIONS(3463), 1, + anon_sym_LPAREN, + ACTIONS(3467), 1, + sym_name_identifier, + STATE(603), 1, + sym_extended_name, + STATE(616), 1, + sym_name_expression, + STATE(623), 1, + sym_subexpression_token, + STATE(1973), 1, + aux_sym_name_expression_repeat1, + STATE(2317), 1, + aux_sym_name_expression_repeat2, + STATE(2545), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(2077), 17, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3465), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(621), 2, + sym_string_literal, + sym_char_literal, + STATE(622), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83071] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1383), 1, + sym_float_number_literal, + ACTIONS(1385), 1, + sym_number_literal, + ACTIONS(1387), 1, + anon_sym_DQUOTE, + ACTIONS(1389), 1, + anon_sym_SQUOTE, + ACTIONS(2654), 1, + sym_name_identifier, + ACTIONS(3469), 1, + anon_sym_LPAREN, + STATE(812), 1, + sym_extended_name, + STATE(1075), 1, + sym_name_expression, + STATE(1232), 1, + sym_subexpression_token, + STATE(1962), 1, + aux_sym_name_expression_repeat1, + STATE(2250), 1, + aux_sym_name_expression_repeat2, + STATE(2548), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1379), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1242), 2, + sym_string_literal, + sym_char_literal, + STATE(1241), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83135] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1447), 1, + sym_float_number_literal, + ACTIONS(1449), 1, + sym_number_literal, + ACTIONS(1451), 1, + anon_sym_DQUOTE, + ACTIONS(1453), 1, + anon_sym_SQUOTE, + ACTIONS(2680), 1, + sym_name_identifier, + ACTIONS(3471), 1, + anon_sym_LPAREN, + STATE(878), 1, + sym_extended_name, + STATE(989), 1, + sym_name_expression, + STATE(1227), 1, + sym_subexpression_token, + STATE(1994), 1, + aux_sym_name_expression_repeat1, + STATE(2268), 1, + aux_sym_name_expression_repeat2, + STATE(2477), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1441), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1219), 2, + sym_string_literal, + sym_char_literal, + STATE(1224), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83199] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2115), 1, + sym_name_identifier, + ACTIONS(2119), 1, + sym_float_number_literal, + ACTIONS(2121), 1, + sym_number_literal, + ACTIONS(2123), 1, + anon_sym_DQUOTE, + ACTIONS(2125), 1, + anon_sym_SQUOTE, + ACTIONS(3473), 1, + anon_sym_LPAREN, + STATE(1515), 1, + sym_extended_name, + STATE(1588), 1, + sym_name_expression, + STATE(1672), 1, + sym_subexpression_token, + STATE(1971), 1, + aux_sym_name_expression_repeat1, + STATE(2311), 1, + aux_sym_name_expression_repeat2, + STATE(2511), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2113), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1652), 2, + sym_string_literal, + sym_char_literal, + STATE(1655), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83263] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(2351), 1, + sym_float_number_literal, + ACTIONS(2353), 1, + sym_number_literal, + ACTIONS(2355), 1, + anon_sym_DQUOTE, + ACTIONS(2357), 1, + anon_sym_SQUOTE, + ACTIONS(3475), 1, + anon_sym_LPAREN, + STATE(1661), 1, + sym_extended_name, + STATE(1722), 1, + sym_name_expression, + STATE(1833), 1, + sym_subexpression_token, + STATE(1987), 1, + aux_sym_name_expression_repeat1, + STATE(2283), 1, + aux_sym_name_expression_repeat2, + STATE(2522), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1838), 2, + sym_string_literal, + sym_char_literal, + STATE(1837), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83327] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(1899), 1, + sym_float_number_literal, + ACTIONS(1901), 1, + sym_number_literal, + ACTIONS(1903), 1, + anon_sym_DQUOTE, + ACTIONS(1905), 1, + anon_sym_SQUOTE, + ACTIONS(2552), 1, + sym_name_identifier, + ACTIONS(3477), 1, + anon_sym_LPAREN, + STATE(1239), 1, + sym_extended_name, + STATE(1335), 1, + sym_name_expression, + STATE(1365), 1, + sym_subexpression_token, + STATE(1959), 1, + aux_sym_name_expression_repeat1, + STATE(2211), 1, + aux_sym_name_expression_repeat2, + STATE(2521), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1895), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1359), 2, + sym_string_literal, + sym_char_literal, + STATE(1360), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83391] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(751), 1, + sym_float_number_literal, + ACTIONS(753), 1, + sym_number_literal, + ACTIONS(755), 1, + anon_sym_DQUOTE, + ACTIONS(757), 1, + anon_sym_SQUOTE, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3483), 1, + sym_name_identifier, + STATE(655), 1, + sym_extended_name, + STATE(692), 1, + sym_name_expression, + STATE(703), 1, + sym_subexpression_token, + STATE(1955), 1, + aux_sym_name_expression_repeat1, + STATE(2249), 1, + aux_sym_name_expression_repeat2, + STATE(2485), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3481), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(699), 2, + sym_string_literal, + sym_char_literal, + STATE(700), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83455] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3487), 1, + anon_sym_type, + ACTIONS(3489), 1, + anon_sym_LPAREN, + ACTIONS(3492), 1, + sym_abstract_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + ACTIONS(3485), 17, ts_builtin_sym_end, anon_sym_namespace, anon_sym_COLON, anon_sym_RBRACE, anon_sym_partition, anon_sym_use, + anon_sym_EQ, anon_sym_import, anon_sym_alias, anon_sym_let, @@ -92185,43 +95215,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_DOT, - [81390] = 5, + [83495] = 19, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3479), 1, - anon_sym_AMP, - STATE(1493), 1, - aux_sym_type_constructor_repeat1, + ACTIONS(2656), 1, + sym_name_identifier, + ACTIONS(3030), 1, + sym_float_number_literal, + ACTIONS(3032), 1, + sym_number_literal, + ACTIONS(3034), 1, + anon_sym_DQUOTE, + ACTIONS(3036), 1, + anon_sym_SQUOTE, + ACTIONS(3495), 1, + anon_sym_LPAREN, + STATE(1831), 1, + sym_extended_name, + STATE(1901), 1, + sym_name_expression, + STATE(1927), 1, + sym_subexpression_token, + STATE(2006), 1, + aux_sym_name_expression_repeat1, + STATE(2242), 1, + aux_sym_name_expression_repeat2, + STATE(2541), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3201), 16, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [81422] = 4, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3026), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(1931), 2, + sym_string_literal, + sym_char_literal, + STATE(1934), 3, + sym_scoped_statement, + sym_access_expression, + sym_literal, + [83559] = 7, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3185), 1, + ACTIONS(3499), 1, + anon_sym_type, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1455), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + ACTIONS(3497), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [83598] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(3507), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3183), 17, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + ACTIONS(3505), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [83637] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3513), 1, + anon_sym_AMP, + STATE(1465), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [83673] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3517), 1, + anon_sym_type, + ACTIONS(3519), 1, + anon_sym_AMP, + STATE(1460), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3515), 17, ts_builtin_sym_end, anon_sym_namespace, anon_sym_RBRACE, @@ -92239,674 +95384,340 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_typeclass, anon_sym_RPAREN, anon_sym_PIPE, - [81452] = 6, + [83709] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3430), 1, + ACTIONS(3519), 1, anon_sym_AMP, - STATE(1468), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [81486] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1977), 1, - anon_sym_type, - ACTIONS(3481), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1975), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [81518] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3158), 4, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_typeclass_identifier, - sym_type_identifier, - ACTIONS(3160), 14, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - [81548] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3311), 4, - anon_sym_RBRACE, - anon_sym_LPAREN, - sym_typeclass_identifier, - sym_type_identifier, - ACTIONS(3313), 14, - anon_sym_namespace, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_type, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - sym_name_identifier, - [81578] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3483), 1, - anon_sym_AMP, - STATE(1497), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [81612] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3485), 1, - anon_sym_AMP, - STATE(1486), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - [81646] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3488), 1, - anon_sym_AMP, - STATE(1486), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - [81680] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3490), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 4, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - ACTIONS(3222), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81712] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3488), 1, - anon_sym_AMP, - STATE(1487), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - anon_sym_DASH_GT, - [81746] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3494), 1, - anon_sym_type, - ACTIONS(3496), 1, - anon_sym_AMP, - STATE(1490), 1, - aux_sym_typeclass_definition_statement_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3492), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [81780] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3499), 1, - anon_sym_AMP, - STATE(1502), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 16, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [81812] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3501), 1, - anon_sym_AMP, - STATE(1492), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 16, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [81844] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3479), 1, - anon_sym_AMP, - STATE(1492), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 16, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [81876] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3504), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 2, - anon_sym_type, - anon_sym_AMP, - ACTIONS(3222), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [81908] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(3506), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3222), 16, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [81940] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3508), 1, - anon_sym_AMP, - STATE(1496), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [81974] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3483), 1, - anon_sym_AMP, - STATE(1496), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [82008] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3513), 1, - anon_sym_type, - ACTIONS(3515), 1, - anon_sym_elif, - STATE(1498), 1, - aux_sym_condition_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3511), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_else, - [82042] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3518), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - ACTIONS(3222), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82074] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3520), 1, - anon_sym_AMP, - STATE(1500), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [82108] = 5, - ACTIONS(3), 1, - sym__line_comment, ACTIONS(3523), 1, + anon_sym_type, + STATE(1457), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3521), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + [83745] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3519), 1, + anon_sym_AMP, + ACTIONS(3527), 1, + anon_sym_type, + STATE(1460), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3525), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + [83781] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3531), 1, + anon_sym_type, + ACTIONS(3533), 1, + anon_sym_AMP, + STATE(1460), 1, + aux_sym_tuple_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3529), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + [83817] = 19, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3536), 1, + anon_sym_AMP, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3540), 1, + anon_sym_PIPE, + ACTIONS(3542), 1, + anon_sym_DOT, + ACTIONS(3546), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(1459), 1, + aux_sym_tuple_type_repeat1, + STATE(1491), 1, + aux_sym_variant_type_repeat1, + STATE(2033), 1, + aux_sym_function_type_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2501), 1, + sym_constructor, + STATE(2502), 1, + aux_sym_constructor_repeat1, + STATE(2642), 1, + sym_parametrized_type, + STATE(3031), 1, + sym_scoped_any_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3544), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(3000), 3, + sym_function_type, + sym_tuple_type, + sym_variant_type, + [83879] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3552), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1977), 3, + ACTIONS(3550), 5, + anon_sym_type, + anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, - ACTIONS(1975), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82140] = 5, + ACTIONS(3548), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [83913] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3499), 1, - anon_sym_AMP, - STATE(1503), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 16, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82172] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3525), 1, - anon_sym_AMP, - STATE(1503), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 16, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_elif, - anon_sym_else, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82204] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3528), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1504), 2, - sym_match_case, - aux_sym_match_repeat1, - ACTIONS(3466), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82235] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, + ACTIONS(3556), 1, anon_sym_type, - ACTIONS(3531), 1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3554), 19, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [83945] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3513), 1, anon_sym_AMP, - STATE(1505), 1, + ACTIONS(3560), 1, + anon_sym_type, + STATE(1456), 1, aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3240), 14, + ACTIONS(3558), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [83981] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3566), 1, + anon_sym_AMP, + STATE(1465), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [84017] = 19, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3519), 1, + anon_sym_AMP, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3571), 1, + anon_sym_DOT, + STATE(167), 1, + sym_type_expression, + STATE(1459), 1, + aux_sym_tuple_type_repeat1, + STATE(1491), 1, + aux_sym_variant_type_repeat1, + STATE(1595), 1, + sym_parametrized_type, + STATE(1675), 1, + sym_any_type, + STATE(2033), 1, + aux_sym_function_type_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2501), 1, + sym_constructor, + STATE(2502), 1, + aux_sym_constructor_repeat1, + STATE(3031), 1, + sym_scoped_any_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3544), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(1659), 3, + sym_function_type, + sym_tuple_type, + sym_variant_type, + [84079] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3575), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3573), 19, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [84111] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3577), 1, + anon_sym_AMP, + STATE(1475), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 16, anon_sym_namespace, anon_sym_RBRACE, anon_sym_use, @@ -92921,18 +95732,709 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_abstract, anon_sym_typeclass, anon_sym_PIPE, - [82268] = 5, + anon_sym_QMARK, + anon_sym_DASH_GT, + [84146] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3581), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3579), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [84177] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3583), 1, + anon_sym_AMP, + STATE(1470), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 16, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [84212] = 18, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3519), 1, + anon_sym_AMP, + ACTIONS(3538), 1, + anon_sym_LPAREN, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3571), 1, + anon_sym_DOT, + STATE(167), 1, + sym_type_expression, + STATE(1459), 1, + aux_sym_tuple_type_repeat1, + STATE(1491), 1, + aux_sym_variant_type_repeat1, + STATE(2033), 1, + aux_sym_function_type_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2501), 1, + sym_constructor, + STATE(2502), 1, + aux_sym_constructor_repeat1, + STATE(2642), 1, + sym_parametrized_type, + STATE(3031), 1, + sym_scoped_any_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3544), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(3000), 3, + sym_function_type, + sym_tuple_type, + sym_variant_type, + [84271] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3586), 1, + anon_sym_AMP, + STATE(1473), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [84306] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3588), 1, + anon_sym_AMP, + STATE(1473), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [84341] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3591), 1, + anon_sym_AMP, + STATE(1483), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + [84376] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3577), 1, + anon_sym_AMP, + STATE(1470), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 16, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [84411] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3595), 1, + anon_sym_type, + ACTIONS(3597), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3593), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + [84444] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3599), 1, + anon_sym_AMP, + STATE(1480), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [84477] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3603), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3601), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [84508] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3599), 1, + anon_sym_AMP, + STATE(1477), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [84541] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3605), 1, + anon_sym_AMP, + STATE(1480), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 17, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [84574] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3610), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3608), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [84605] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3586), 1, + anon_sym_AMP, + STATE(1472), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [84640] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3591), 1, + anon_sym_AMP, + STATE(1490), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + [84675] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3612), 4, + ts_builtin_sym_end, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + ACTIONS(3614), 15, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + [84706] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3618), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3616), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_EQ, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_LPAREN, + sym_abstract_type_identifier, + [84737] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3622), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3620), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [84768] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3531), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3529), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [84799] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(3534), 1, + ACTIONS(3624), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1977), 2, + ACTIONS(3550), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(3548), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [84832] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3626), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3247), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [84863] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3628), 1, + anon_sym_AMP, + STATE(1490), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, anon_sym_PIPE, anon_sym_DASH_GT, - ACTIONS(1975), 14, + [84898] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3633), 1, + anon_sym_type, + STATE(1496), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3631), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + [84933] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3637), 1, + anon_sym_type, + STATE(1496), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3635), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + [84968] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3639), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + ACTIONS(3548), 14, anon_sym_const, anon_sym_var, anon_sym_LBRACE, @@ -92947,21 +96449,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [82299] = 7, + [85001] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3641), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + ACTIONS(3548), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [85034] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3475), 1, + ACTIONS(3645), 1, anon_sym_type, - ACTIONS(3536), 1, - anon_sym_elif, - ACTIONS(3538), 1, - anon_sym_else, - STATE(1545), 1, - aux_sym_condition_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3473), 13, + ACTIONS(3643), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [85065] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3523), 1, + anon_sym_type, + ACTIONS(3647), 1, + anon_sym_PIPE, + STATE(1496), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3521), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + [85100] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3652), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3650), 18, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + [85131] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3654), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + ACTIONS(1987), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [85164] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3656), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 5, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + ACTIONS(3548), 13, anon_sym_namespace, anon_sym_RBRACE, anon_sym_use, @@ -92975,20 +96616,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [82334] = 6, + [85197] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3658), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + ACTIONS(1987), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [85229] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 9, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85259] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3468), 1, + ACTIONS(3660), 1, + anon_sym_AMP, + STATE(1504), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [85291] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3664), 1, anon_sym_type, - ACTIONS(3540), 1, + ACTIONS(3666), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - STATE(1508), 2, + STATE(1503), 2, sym_match_case, aux_sym_match_repeat1, - ACTIONS(3466), 13, + ACTIONS(3662), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [85325] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3669), 1, + anon_sym_AMP, + STATE(1504), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [85357] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3672), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 3, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3548), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [85389] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3674), 1, + anon_sym_AMP, + STATE(1506), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 15, anon_sym_namespace, anon_sym_RBRACE, anon_sym_use, @@ -93002,23 +96804,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [82367] = 7, + anon_sym_PIPE, + anon_sym_DASH_GT, + [85423] = 7, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3452), 1, + ACTIONS(3679), 1, anon_sym_type, - ACTIONS(3536), 1, + ACTIONS(3681), 1, anon_sym_elif, - ACTIONS(3543), 1, + ACTIONS(3683), 1, + anon_sym_else, + STATE(1510), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3677), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [85459] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3685), 1, + anon_sym_AMP, + STATE(1508), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [85493] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85525] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3690), 1, + anon_sym_type, + ACTIONS(3692), 1, + anon_sym_elif, + STATE(1510), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3688), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_else, + [85559] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3697), 1, + anon_sym_type, + ACTIONS(3699), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1503), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(3695), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [85593] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3701), 1, + anon_sym_AMP, + STATE(1519), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 15, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [85627] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3703), 1, + anon_sym_AMP, + STATE(1506), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 15, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + [85661] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3705), 1, + anon_sym_AMP, + STATE(1508), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [85695] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [85727] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3681), 1, + anon_sym_elif, + ACTIONS(3709), 1, + anon_sym_type, + ACTIONS(3711), 1, anon_sym_else, STATE(1507), 1, aux_sym_condition_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3450), 13, + ACTIONS(3707), 14, + ts_builtin_sym_end, anon_sym_namespace, - anon_sym_RBRACE, + anon_sym_partition, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -93030,15 +97086,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [82402] = 5, + [85763] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2095), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2093), 7, + ACTIONS(1993), 8, + anon_sym_COLON, anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, @@ -93046,7 +97103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2091), 9, + ACTIONS(1991), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -93056,15 +97113,17 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [82433] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3545), 1, - sym_operator, - ACTIONS(5), 2, + [85795] = 5, + ACTIONS(5), 1, sym__doc_comment, + ACTIONS(3713), 1, + anon_sym_AMP, + STATE(1535), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, sym__block_comment, - ACTIONS(1975), 16, + ACTIONS(3558), 16, anon_sym_const, anon_sym_var, anon_sym_LBRACE, @@ -93081,24 +97140,697 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [82462] = 5, + [85827] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3547), 1, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3701), 1, + anon_sym_AMP, + STATE(1521), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 15, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [85861] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(3715), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3548), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [85893] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3717), 1, + anon_sym_AMP, + STATE(1521), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 15, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [85927] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 9, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [85957] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3660), 1, + anon_sym_AMP, + STATE(1502), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [85989] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3705), 1, + anon_sym_AMP, + STATE(1514), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [86023] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3722), 1, + anon_sym_type, + ACTIONS(3724), 1, + anon_sym_AMP, + STATE(1525), 1, + aux_sym_typeclass_definition_statement_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3720), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [86057] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 9, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86087] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3727), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 3, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + ACTIONS(1987), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [86119] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3612), 4, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + ACTIONS(3614), 14, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + [86149] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3332), 4, + anon_sym_RBRACE, + anon_sym_LPAREN, + sym_typeclass_identifier, + sym_type_identifier, + ACTIONS(3334), 14, + anon_sym_namespace, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_type, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + sym_name_identifier, + [86179] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1989), 1, + anon_sym_type, + ACTIONS(3729), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1987), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [86211] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3731), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + ACTIONS(3548), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [86243] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3735), 1, + anon_sym_type, + ACTIONS(3737), 1, + anon_sym_QMARK, + ACTIONS(3739), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3733), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [86277] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3741), 1, + anon_sym_AMP, + STATE(1533), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [86309] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3744), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 4, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + ACTIONS(3548), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [86341] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3713), 1, + anon_sym_AMP, + STATE(1533), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 16, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [86373] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3746), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(3548), 15, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [86405] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3748), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 4, + anon_sym_type, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + ACTIONS(1987), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [86437] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3703), 1, + anon_sym_AMP, + STATE(1513), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 15, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + anon_sym_DASH_GT, + [86471] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3752), 1, + anon_sym_type, + ACTIONS(3754), 1, + anon_sym_AMP, + STATE(1525), 1, + aux_sym_typeclass_definition_statement_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3750), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [86505] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3523), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3521), 17, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_RPAREN, + anon_sym_PIPE, + [86535] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2067), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2065), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [86564] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3697), 1, + anon_sym_type, + ACTIONS(3756), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - STATE(1504), 2, + STATE(1574), 2, sym_match_case, aux_sym_match_repeat1, - ACTIONS(3458), 14, + ACTIONS(3695), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [86597] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86628] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3758), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1987), 16, anon_sym_const, anon_sym_var, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_match, anon_sym_if, + anon_sym_elif, + anon_sym_else, anon_sym_do, anon_sym_while, anon_sym_for, @@ -93107,878 +97839,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [82493] = 6, + [86657] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 8, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2021), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86686] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2037), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86715] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3549), 1, + ACTIONS(3760), 1, anon_sym_elif, - ACTIONS(3551), 1, - anon_sym_else, - STATE(1515), 1, + STATE(1547), 1, aux_sym_condition_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3450), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82526] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [82557] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3549), 1, - anon_sym_elif, - ACTIONS(3553), 1, - anon_sym_else, - STATE(1546), 1, - aux_sym_condition_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3473), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82590] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3460), 1, - anon_sym_type, - ACTIONS(3555), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1508), 2, - sym_match_case, - aux_sym_match_repeat1, - ACTIONS(3458), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [82623] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3557), 1, - anon_sym_QMARK, - ACTIONS(3559), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3432), 15, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82654] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3561), 1, - anon_sym_AMP, - STATE(1518), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [82687] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3120), 1, - anon_sym_DASH_GT, - ACTIONS(3566), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3564), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [82718] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3570), 1, - anon_sym_type, - ACTIONS(3572), 1, - anon_sym_PIPE, - STATE(1556), 1, - aux_sym_variant_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3568), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [82751] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3574), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 2, - anon_sym_type, - anon_sym_AMP, - ACTIONS(3222), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [82782] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3576), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 3, - anon_sym_type, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3222), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [82813] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3494), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3492), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - [82842] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3580), 1, - anon_sym_type, - ACTIONS(3582), 1, - anon_sym_AMP, - STATE(1555), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3578), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [82875] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [82906] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3586), 1, - anon_sym_type, - ACTIONS(3588), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3584), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [82937] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3590), 1, - anon_sym_AMP, - STATE(1530), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 15, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [82968] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [82999] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3592), 1, - anon_sym_AMP, - STATE(1531), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 14, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [83032] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3594), 1, - anon_sym_AMP, - STATE(1530), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 15, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [83063] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3592), 1, - anon_sym_AMP, - STATE(1505), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 14, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [83096] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83125] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3597), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3222), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [83156] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3599), 1, - anon_sym_AMP, - STATE(1518), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83189] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3601), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1977), 3, - anon_sym_type, - anon_sym_PIPE, - anon_sym_DASH_GT, - ACTIONS(1975), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83220] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83249] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3605), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3603), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - [83278] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83307] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3609), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3607), 16, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_AMP, - [83336] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83365] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83396] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3574), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3613), 2, - anon_sym_type, - anon_sym_AMP, - ACTIONS(3611), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83427] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83458] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3619), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3617), 2, - anon_sym_type, - anon_sym_PIPE, - ACTIONS(3615), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83489] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3513), 1, - anon_sym_type, - ACTIONS(3621), 1, - anon_sym_elif, - STATE(1545), 1, - aux_sym_condition_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3511), 14, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_else, - [83522] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3624), 1, - anon_sym_elif, - STATE(1546), 1, - aux_sym_condition_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3511), 15, + ACTIONS(3688), 15, anon_sym_const, anon_sym_var, anon_sym_LBRACE, @@ -93994,125 +97915,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [83553] = 5, + [86746] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(3619), 1, + ACTIONS(3763), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1977), 2, - anon_sym_type, + ACTIONS(1989), 2, anon_sym_PIPE, - ACTIONS(1975), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83584] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83613] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3203), 1, - anon_sym_type, - ACTIONS(3599), 1, - anon_sym_AMP, - STATE(1534), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83646] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83675] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3590), 1, - anon_sym_AMP, - STATE(1527), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 15, + ACTIONS(1987), 14, anon_sym_const, anon_sym_var, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PIPE, anon_sym_match, anon_sym_if, anon_sym_do, @@ -94123,278 +97941,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [83706] = 4, + [86777] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83735] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83764] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1977), 1, - anon_sym_type, - ACTIONS(3627), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1975), 15, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_elif, - anon_sym_else, - [83795] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3613), 1, - anon_sym_type, - ACTIONS(3629), 1, - anon_sym_AMP, - STATE(1555), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3611), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83828] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3617), 1, - anon_sym_type, - ACTIONS(3632), 1, - anon_sym_PIPE, - STATE(1556), 1, - aux_sym_variant_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3615), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83861] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83890] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3434), 1, - anon_sym_type, - ACTIONS(3635), 1, - anon_sym_QMARK, - ACTIONS(3637), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3432), 14, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - anon_sym_PIPE, - [83923] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3641), 1, - anon_sym_EQ, - ACTIONS(3643), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3639), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [83954] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 8, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [83983] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 6, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84013] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 4, + ACTIONS(1993), 5, + anon_sym_COLON, anon_sym_AMP, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2015), 11, + ACTIONS(1991), 11, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, @@ -94406,23 +97967,13 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [84043] = 5, + [86808] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2059), 7, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 8, + ACTIONS(2013), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -94431,15 +97982,701 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [84073] = 4, + ACTIONS(2015), 9, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [86837] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 8, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2013), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86866] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 7, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [86897] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3647), 1, + ACTIONS(3765), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1555), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(3695), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [86928] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3767), 1, + anon_sym_QMARK, + ACTIONS(3769), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3733), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [86959] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3771), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1555), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(3662), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [86990] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 8, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87019] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3774), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 3, + anon_sym_type, + anon_sym_PIPE, + anon_sym_DASH_GT, + ACTIONS(1987), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87050] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3679), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_elif, + ACTIONS(3778), 1, + anon_sym_else, + STATE(1610), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3677), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87085] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3782), 1, + anon_sym_type, + ACTIONS(3784), 1, + anon_sym_PIPE, + STATE(1579), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3780), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87118] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2021), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87147] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87178] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 6, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2013), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87207] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 6, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2021), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87236] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 8, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87265] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3786), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 3, + anon_sym_type, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3548), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87296] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2013), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87325] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87356] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3788), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3548), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [87387] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3790), 1, + anon_sym_AMP, + STATE(1569), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 14, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [87420] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 5, + anon_sym_COLON, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87451] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3735), 1, + anon_sym_type, + ACTIONS(3793), 1, + anon_sym_QMARK, + ACTIONS(3795), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3733), 14, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [87484] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 7, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87515] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3799), 1, + anon_sym_type, + ACTIONS(3801), 1, + anon_sym_AMP, + STATE(1581), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3797), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87548] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3664), 1, + anon_sym_type, + ACTIONS(3803), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1574), 2, + sym_match_case, + aux_sym_match_repeat1, + ACTIONS(3662), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87581] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87612] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1989), 1, + anon_sym_type, + ACTIONS(3806), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1987), 15, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_elif, + anon_sym_else, + [87643] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3722), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3645), 15, + ACTIONS(3720), 16, ts_builtin_sym_end, anon_sym_namespace, anon_sym_RBRACE, @@ -94455,19 +98692,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [84101] = 6, + anon_sym_AMP, + [87672] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87703] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3203), 1, + ACTIONS(3810), 1, anon_sym_type, - ACTIONS(3649), 1, + ACTIONS(3812), 1, + anon_sym_PIPE, + STATE(1579), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3808), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87736] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87767] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3817), 1, + anon_sym_type, + ACTIONS(3819), 1, + anon_sym_AMP, + STATE(1581), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3815), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87800] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 9, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87829] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 9, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [87858] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3822), 1, + anon_sym_AMP, + STATE(1598), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87891] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3826), 1, + anon_sym_type, + ACTIONS(3828), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3824), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [87922] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 7, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [87953] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3830), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(3548), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [87984] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3832), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88015] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3836), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3834), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + [88044] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3838), 1, anon_sym_AMP, STATE(1605), 1, aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3201), 13, + ACTIONS(3558), 14, anon_sym_namespace, anon_sym_RBRACE, anon_sym_use, @@ -94481,19 +99031,594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [84133] = 6, + anon_sym_PIPE, + [88077] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3613), 1, - anon_sym_type, - ACTIONS(3651), 1, + ACTIONS(3840), 1, anon_sym_AMP, - STATE(1566), 1, + STATE(1591), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [88108] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3845), 1, + anon_sym_EQ, + ACTIONS(3847), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3843), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88139] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3822), 1, + anon_sym_AMP, + STATE(1584), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88172] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 5, + anon_sym_COLON, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88203] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3320), 1, + anon_sym_DASH_GT, + ACTIONS(3851), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3849), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88234] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3853), 1, + anon_sym_elif, + ACTIONS(3855), 1, + anon_sym_else, + STATE(1604), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3707), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [88267] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 6, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2037), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88296] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3857), 1, + anon_sym_AMP, + STATE(1598), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88329] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3860), 1, + anon_sym_AMP, + STATE(1591), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [88360] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3830), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3817), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(3815), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88391] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3709), 1, + anon_sym_type, + ACTIONS(3776), 1, + anon_sym_elif, + ACTIONS(3862), 1, + anon_sym_else, + STATE(1558), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3707), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88426] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3866), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3864), 16, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_AMP, + [88455] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88486] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3853), 1, + anon_sym_elif, + ACTIONS(3868), 1, + anon_sym_else, + STATE(1547), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3677), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [88519] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3838), 1, + anon_sym_AMP, + STATE(1569), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 14, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [88552] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3860), 1, + anon_sym_AMP, + STATE(1599), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [88583] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 8, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2037), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88612] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3870), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3810), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(3808), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88643] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3870), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(1987), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88674] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3690), 1, + anon_sym_type, + ACTIONS(3872), 1, + anon_sym_elif, + STATE(1610), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3688), 14, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_else, + [88707] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3810), 1, + anon_sym_PIPE, + ACTIONS(3875), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3808), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [88737] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88765] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3817), 1, + anon_sym_type, + ACTIONS(3877), 1, + anon_sym_AMP, + STATE(1613), 1, aux_sym_tuple_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3611), 13, + ACTIONS(3815), 13, anon_sym_namespace, anon_sym_RBRACE, anon_sym_use, @@ -94507,38 +99632,1589 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [84165] = 5, + [88797] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3810), 1, + anon_sym_type, + ACTIONS(3880), 1, + anon_sym_PIPE, + STATE(1614), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3808), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88829] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3799), 1, + anon_sym_type, + ACTIONS(3883), 1, + anon_sym_AMP, + STATE(1613), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3797), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88861] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 7, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88889] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 7, + anon_sym_COLON, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [88919] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3885), 1, + anon_sym_AMP, + STATE(1681), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [88949] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3782), 1, + anon_sym_type, + ACTIONS(3887), 1, + anon_sym_PIPE, + STATE(1614), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3780), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [88981] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2037), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89009] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3889), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89039] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2021), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89067] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3891), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(3548), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89097] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 7, + anon_sym_COLON, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89127] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3895), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3893), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89155] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89183] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 7, + anon_sym_COLON, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89213] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3817), 1, + anon_sym_AMP, + ACTIONS(3897), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3815), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [89243] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3899), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3824), 15, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [89271] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 5, + anon_sym_COLON, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2037), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89299] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 8, + anon_sym_COLON, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89327] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(3897), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3548), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [89357] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3564), 1, + anon_sym_type, + ACTIONS(3901), 1, + anon_sym_AMP, + STATE(1633), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89389] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 8, + anon_sym_COLON, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89417] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 8, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [89445] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3906), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3904), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89473] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2013), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89501] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 5, + anon_sym_COLON, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2021), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89529] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 5, + anon_sym_COLON, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2013), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89557] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3910), 1, + anon_sym_COLON, + ACTIONS(3912), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3908), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89587] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1989), 1, + anon_sym_type, + ACTIONS(3914), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1987), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89617] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89647] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 5, + anon_sym_AMP, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89675] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89705] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 4, + anon_sym_COLON, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89735] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3918), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3916), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89763] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3922), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3920), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89791] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89821] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3924), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89851] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89881] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3928), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3926), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [89909] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89937] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3930), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [89967] = 4, + ACTIONS(3), 1, + sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, ACTIONS(2067), 7, anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2065), 8, + ACTIONS(2065), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, anon_sym_AT, + sym_name_identifier, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [84195] = 4, + [89995] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2069), 8, + ACTIONS(345), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90023] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3932), 1, + anon_sym_AMP, + STATE(1669), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3797), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [90053] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3934), 1, + anon_sym_PIPE, + STATE(1670), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3780), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [90083] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90113] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3851), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3849), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90141] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3511), 1, + anon_sym_type, + ACTIONS(3936), 1, + anon_sym_AMP, + STATE(1633), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90173] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 6, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90203] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 4, + anon_sym_COLON, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90233] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3560), 1, + anon_sym_type, + ACTIONS(3936), 1, + anon_sym_AMP, + STATE(1660), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90265] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3940), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3938), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90293] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3942), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3810), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(3808), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90323] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3891), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3817), 2, + anon_sym_type, + anon_sym_AMP, + ACTIONS(3815), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90353] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90381] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90409] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3944), 1, + anon_sym_AMP, + STATE(1669), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3815), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [90439] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3947), 1, + anon_sym_PIPE, + STATE(1670), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3808), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [90469] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3952), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3950), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90497] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90525] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90555] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2013), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90583] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3956), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3954), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90611] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3958), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90641] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90669] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -94547,7 +101223,178 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2071), 8, + ACTIONS(2039), 8, + anon_sym_COLON, + anon_sym_elif, + anon_sym_else, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [90697] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3826), 1, + anon_sym_type, + ACTIONS(3960), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3824), 14, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + anon_sym_PIPE, + [90727] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 4, + anon_sym_COLON, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90757] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3885), 1, + anon_sym_AMP, + STATE(1688), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [90787] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 7, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2021), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90815] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3964), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3962), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90843] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3968), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3966), 15, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90871] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 8, anon_sym_AMP, anon_sym_elif, anon_sym_else, @@ -94556,11 +101403,349 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [84223] = 5, + [90899] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 5, + anon_sym_AMP, anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [90927] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3972), 1, + anon_sym_COLON, + ACTIONS(3974), 1, + anon_sym_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3970), 14, + ts_builtin_sym_end, + anon_sym_namespace, + anon_sym_partition, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [90957] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3976), 1, + anon_sym_AMP, + STATE(1688), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [90987] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91017] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(3875), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1987), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [91047] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 6, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91077] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91107] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 7, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91135] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2037), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91163] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3942), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 2, + anon_sym_type, + anon_sym_PIPE, + ACTIONS(1987), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [91193] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 6, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91220] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91249] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91276] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91303] = 4, + ACTIONS(3), 1, + sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -94581,997 +101766,155 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [84253] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3656), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3654), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84281] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3660), 1, - anon_sym_COLON, - ACTIONS(3662), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3658), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84311] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3664), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3617), 2, - anon_sym_type, - anon_sym_PIPE, - ACTIONS(3615), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84341] = 4, + [91330] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2053), 8, + ACTIONS(2013), 7, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_AT, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2055), 8, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [84369] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 8, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [84397] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 8, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [84425] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 7, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84455] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84483] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84511] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3666), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3613), 2, - anon_sym_type, - anon_sym_AMP, - ACTIONS(3611), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84541] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3670), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3668), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84569] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84597] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3674), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3672), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84625] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84653] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3570), 1, - anon_sym_type, - ACTIONS(3676), 1, - anon_sym_PIPE, - STATE(1612), 1, - aux_sym_variant_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3568), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84685] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 7, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84715] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3580), 1, - anon_sym_type, - ACTIONS(3678), 1, - anon_sym_AMP, - STATE(1566), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3578), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [84747] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 5, - anon_sym_AMP, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84775] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84803] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 8, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [84831] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84859] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84887] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3680), 1, - anon_sym_AMP, - STATE(1595), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [84917] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84945] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [84973] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3682), 1, - anon_sym_AMP, - STATE(1595), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [85003] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85033] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 8, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [85061] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 5, - anon_sym_AMP, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85089] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 5, - anon_sym_AMP, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85117] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3687), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3685), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85145] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 7, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, ACTIONS(2015), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85175] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85203] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85233] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3691), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3689), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85261] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3249), 1, - anon_sym_type, - ACTIONS(3649), 1, - anon_sym_AMP, - STATE(1609), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85293] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3693), 1, - anon_sym_AMP, - STATE(1616), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3578), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [85323] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3695), 1, - anon_sym_PIPE, - STATE(1617), 1, - aux_sym_variant_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3568), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [85353] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3699), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3697), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85381] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3242), 1, - anon_sym_type, - ACTIONS(3701), 1, - anon_sym_AMP, - STATE(1609), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85413] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3706), 1, anon_sym_COLON, - ACTIONS(3708), 1, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91357] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91384] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91411] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91438] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91467] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91496] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3981), 1, anon_sym_type, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3704), 14, + ACTIONS(3979), 14, ts_builtin_sym_end, anon_sym_namespace, anon_sym_partition, @@ -95586,73 +101929,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [85443] = 5, + [91523] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1977), 1, - anon_sym_PIPE, - ACTIONS(3710), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1975), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [85473] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3617), 1, - anon_sym_type, - ACTIONS(3712), 1, - anon_sym_PIPE, - STATE(1612), 1, - aux_sym_variant_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3615), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85505] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2059), 6, + ACTIONS(2045), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91552] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91579] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, anon_sym_PIPE, anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2057), 9, + ACTIONS(2129), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -95662,384 +101999,39 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [85535] = 5, + [91606] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(2133), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85565] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3566), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3564), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85593] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3715), 1, - anon_sym_AMP, - STATE(1616), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3611), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [85623] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3718), 1, - anon_sym_PIPE, - STATE(1617), 1, - aux_sym_variant_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3615), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [85653] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3723), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3721), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85681] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 8, - anon_sym_AMP, + ACTIONS(2131), 6, anon_sym_elif, anon_sym_else, - anon_sym_DOT, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - [85709] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 5, - anon_sym_AMP, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85737] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, + ACTIONS(2129), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, anon_sym_AT, - sym_name_identifier, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [85767] = 5, + [91635] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85797] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 6, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85827] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3666), 1, + ACTIONS(3983), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(3224), 2, - anon_sym_type, - anon_sym_AMP, - ACTIONS(3222), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85857] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3725), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3584), 15, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [85885] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3729), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3727), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [85913] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85941] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [85969] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(3731), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3222), 14, + ACTIONS(1987), 14, anon_sym_const, anon_sym_var, anon_sym_LBRACE, @@ -96054,67 +102046,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, anon_sym_break, anon_sym_continue, - [85999] = 4, + [91662] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2079), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 9, + ACTIONS(1997), 7, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_AT, - sym_name_identifier, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86027] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86055] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 5, + ACTIONS(1999), 7, + anon_sym_COLON, anon_sym_AMP, - anon_sym_DOT, + anon_sym_do, + sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2087), 11, + [91691] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3985), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 11, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, @@ -96126,190 +102094,67 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86083] = 5, + [91720] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2095), 1, + ACTIONS(2133), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2093), 6, + ACTIONS(2131), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91749] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 8, + anon_sym_COLON, anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91776] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 6, anon_sym_PIPE, anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86113] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86141] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86169] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 5, - anon_sym_AMP, anon_sym_DOT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(313), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86197] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 5, - anon_sym_AMP, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86225] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 5, - anon_sym_AMP, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86253] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 5, - anon_sym_AMP, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86281] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 9, + ACTIONS(317), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -96319,63 +102164,12 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86309] = 4, + [91803] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2087), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 8, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [86337] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 4, - anon_sym_AMP, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86367] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, ACTIONS(2067), 4, anon_sym_AMP, sym_operator, @@ -96393,22 +102187,92 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86397] = 5, + [91830] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91857] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2103), 6, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 7, + anon_sym_COLON, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, + anon_sym_do, + sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2101), 9, + [91886] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [91915] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3987), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -96418,20 +102282,111 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86427] = 5, + [91944] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1977), 1, - anon_sym_type, - ACTIONS(3733), 1, - sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(1975), 14, - ts_builtin_sym_end, + ACTIONS(2075), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91971] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [91998] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92025] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92052] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3974), 1, + anon_sym_type, + ACTIONS(3989), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3970), 13, anon_sym_namespace, - anon_sym_partition, + anon_sym_RBRACE, anon_sym_use, anon_sym_import, anon_sym_alias, @@ -96443,21 +102398,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - [86457] = 4, + [92081] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2055), 7, + ACTIONS(2131), 5, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2053), 9, + ACTIONS(2129), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -96467,19 +102422,321 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86485] = 4, + [92110] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2085), 5, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 8, + anon_sym_COLON, anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92137] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92166] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 5, + anon_sym_COLON, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92195] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92222] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92249] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92276] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92303] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2023), 6, + anon_sym_COLON, + anon_sym_PIPE, anon_sym_DOT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2083), 11, + ACTIONS(2021), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92330] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92359] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 8, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92386] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92413] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1993), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92442] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 7, + anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92469] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 11, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, @@ -96491,119 +102748,340 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86513] = 4, + [92496] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2109), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86541] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86569] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86597] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 7, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86625] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 8, + ACTIONS(345), 4, anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92523] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1997), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(1999), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92552] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92579] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3912), 1, + anon_sym_type, + ACTIONS(3991), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3908), 13, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_use, + anon_sym_import, + anon_sym_alias, + anon_sym_let, + anon_sym_decl, + anon_sym_def, + anon_sym_struct, + anon_sym_class, + anon_sym_basic, + anon_sym_abstract, + anon_sym_typeclass, + [92608] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92635] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92662] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92691] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3993), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92720] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92747] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 4, + anon_sym_AMP, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92774] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2045), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2047), 7, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [92803] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92830] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92857] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92884] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 7, anon_sym_elif, anon_sym_else, anon_sym_DOT, @@ -96611,14 +103089,208 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - [86653] = 4, + ACTIONS(303), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92911] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2019), 8, + ACTIONS(345), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92938] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 6, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92965] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2039), 6, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2037), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [92992] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 5, + anon_sym_COLON, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93021] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 5, + anon_sym_COLON, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93050] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 7, anon_sym_AMP, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93077] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2015), 6, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2013), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93104] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93131] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 7, anon_sym_elif, anon_sym_else, anon_sym_DOT, @@ -96626,7 +103298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2063), 8, + ACTIONS(317), 8, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -96635,17 +103307,86 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86681] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3586), 1, - anon_sym_type, - ACTIONS(3735), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, + [93158] = 4, + ACTIONS(3), 1, sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, sym__block_comment, - ACTIONS(3584), 14, + ACTIONS(2087), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93185] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93212] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93239] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1989), 1, + anon_sym_type, + ACTIONS(3995), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1987), 13, anon_sym_namespace, anon_sym_RBRACE, anon_sym_use, @@ -96659,23 +103400,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_basic, anon_sym_abstract, anon_sym_typeclass, - anon_sym_PIPE, - [86711] = 5, + [93268] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, + ACTIONS(3997), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2017), 6, + ACTIONS(345), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93297] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 4, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93324] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_DASH_GT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2015), 9, + ACTIONS(343), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -96685,71 +103470,20 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86741] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3739), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3737), 15, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [86769] = 5, + [93351] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2059), 4, + ACTIONS(2059), 6, anon_sym_AMP, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86799] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 6, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_DASH_GT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2101), 9, + ACTIONS(2057), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -96759,247 +103493,124 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [86829] = 5, + [93378] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3999), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93406] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 7, + anon_sym_COLON, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93432] = 13, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3680), 1, + ACTIONS(4001), 1, anon_sym_AMP, - STATE(1592), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [86859] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3617), 1, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, anon_sym_PIPE, - ACTIONS(3710), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3615), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [86889] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3613), 1, - anon_sym_AMP, - ACTIONS(3731), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3611), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [86919] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3664), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1977), 2, - anon_sym_type, - anon_sym_PIPE, - ACTIONS(1975), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [86949] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 4, - anon_sym_AMP, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, + ACTIONS(4009), 1, sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [86979] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 4, - anon_sym_AMP, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [87009] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(597), 1, - sym_float_number_literal, - ACTIONS(599), 1, - sym_number_literal, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(2660), 1, - sym_name_identifier, - ACTIONS(3741), 1, - anon_sym_LPAREN, - ACTIONS(3743), 1, - anon_sym_SQUOTE, - STATE(700), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2358), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(591), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(690), 2, - sym_string_literal, - sym_char_literal, - STATE(695), 2, + STATE(2294), 1, sym_extended_name, - sym_literal, - [87056] = 4, - ACTIONS(3), 1, + STATE(2481), 1, + aux_sym_reference_expression_repeat1, + STATE(2589), 1, + aux_sym_variant_name_repeat1, + STATE(2598), 1, + aux_sym_tuple_name_repeat1, + STATE(3110), 1, + sym_any_name, + ACTIONS(3), 2, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, sym__block_comment, - ACTIONS(2093), 6, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4007), 2, anon_sym_TILDE, anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [87083] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, + STATE(2554), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [93476] = 13, + ACTIONS(5), 1, sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, + ACTIONS(4001), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, + ACTIONS(4003), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4005), 1, + anon_sym_PIPE, + ACTIONS(4009), 1, + sym_name_identifier, + STATE(2294), 1, + sym_extended_name, + STATE(2481), 1, + aux_sym_reference_expression_repeat1, + STATE(2589), 1, + aux_sym_variant_name_repeat1, + STATE(2598), 1, + aux_sym_tuple_name_repeat1, + STATE(3107), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4007), 2, anon_sym_TILDE, anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [87110] = 4, + STATE(2554), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [93520] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2093), 4, - anon_sym_AMP, + ACTIONS(345), 3, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2091), 11, + ACTIONS(343), 11, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI, @@ -97011,11 +103622,818 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [87137] = 5, + [93546] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93572] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 7, + anon_sym_COLON, + anon_sym_with, anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93598] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93624] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93650] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4011), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93678] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93704] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93732] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93758] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93784] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93810] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93836] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93862] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93888] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4013), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [93912] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93940] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [93968] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [93994] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 7, + anon_sym_AMP, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94020] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94046] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94074] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 6, + anon_sym_elif, + anon_sym_else, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 8, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94100] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4015), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [94124] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94150] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94178] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94204] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94230] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94256] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4017), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94284] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94312] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 7, + anon_sym_AMP, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94338] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(303), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94364] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94392] = 14, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4019), 1, + anon_sym_LPAREN, + ACTIONS(4023), 1, + sym_name_identifier, + STATE(167), 1, + sym_type_expression, + STATE(1383), 1, + sym_parametrized_type, + STATE(1486), 1, + sym_scoped_any_type, + STATE(1487), 1, + sym_extended_scoped_any_type, + STATE(1917), 1, + aux_sym_reference_expression_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2977), 1, + sym_extended_name, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(4021), 2, + anon_sym_TILDE, + anon_sym_AT, + [94438] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 5, + anon_sym_PIPE, + anon_sym_DOT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94464] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2127), 7, + anon_sym_AMP, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94490] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 7, + anon_sym_COLON, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94516] = 4, + ACTIONS(3), 1, + sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -97035,331 +104453,140 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [87166] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, - sym_float_number_literal, - ACTIONS(2197), 1, - sym_number_literal, - ACTIONS(2199), 1, - anon_sym_DQUOTE, - ACTIONS(3745), 1, - anon_sym_LPAREN, - ACTIONS(3747), 1, - anon_sym_SQUOTE, - STATE(1657), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2363), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2189), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1599), 2, - sym_extended_name, - sym_literal, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - [87213] = 4, + [94542] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2085), 4, - anon_sym_DOT, + ACTIONS(2047), 6, + anon_sym_COLON, + anon_sym_while, + sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2083), 11, + ACTIONS(2045), 7, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, anon_sym_TILDE, anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [87240] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(2748), 1, - sym_name_identifier, - ACTIONS(3749), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, - anon_sym_SQUOTE, - STATE(1057), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2332), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1593), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(1172), 2, - sym_extended_name, - sym_literal, - [87287] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(2640), 1, - sym_name_identifier, - ACTIONS(3753), 1, - anon_sym_LPAREN, - ACTIONS(3755), 1, - anon_sym_SQUOTE, - STATE(1266), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2325), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1833), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1248), 2, - sym_extended_name, - sym_literal, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - [87334] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1073), 1, - sym_float_number_literal, - ACTIONS(1075), 1, - sym_number_literal, - ACTIONS(1077), 1, - anon_sym_DQUOTE, - ACTIONS(2748), 1, - sym_name_identifier, - ACTIONS(3749), 1, - anon_sym_LPAREN, - ACTIONS(3751), 1, - anon_sym_SQUOTE, - STATE(1086), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2332), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1593), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1138), 2, - sym_string_literal, - sym_char_literal, - STATE(1172), 2, - sym_extended_name, - sym_literal, - [87381] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(557), 1, - sym_float_number_literal, - ACTIONS(559), 1, - sym_number_literal, - ACTIONS(561), 1, - anon_sym_DQUOTE, - ACTIONS(2640), 1, - sym_name_identifier, - ACTIONS(3753), 1, - anon_sym_LPAREN, - ACTIONS(3755), 1, - anon_sym_SQUOTE, - STATE(1277), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2325), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1833), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1248), 2, - sym_extended_name, - sym_literal, - STATE(1251), 2, - sym_string_literal, - sym_char_literal, - [87428] = 5, + [94570] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2103), 5, + ACTIONS(2047), 6, + anon_sym_COLON, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94598] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4025), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_then, + sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2101), 9, + ACTIONS(343), 7, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_AT, - sym_name_identifier, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [87457] = 14, + [94626] = 13, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(2574), 1, + ACTIONS(4023), 1, sym_name_identifier, - ACTIONS(3757), 1, + ACTIONS(4027), 1, + anon_sym_AMP, + ACTIONS(4029), 1, anon_sym_LPAREN, - ACTIONS(3759), 1, - anon_sym_SQUOTE, - STATE(951), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2339), 1, + ACTIONS(4031), 1, + anon_sym_PIPE, + STATE(2294), 1, + sym_extended_name, + STATE(2453), 1, + aux_sym_tuple_name_repeat1, + STATE(2457), 1, + aux_sym_variant_name_repeat1, + STATE(2534), 1, aux_sym_reference_expression_repeat1, + STATE(2610), 1, + sym_any_name, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(1523), 2, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, - STATE(950), 2, - sym_extended_name, - sym_literal, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - [87504] = 14, + STATE(2554), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [94670] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(2744), 1, - sym_name_identifier, - ACTIONS(3761), 1, - anon_sym_LPAREN, - ACTIONS(3763), 1, - anon_sym_SQUOTE, - STATE(1352), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2377), 1, - aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(1971), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1341), 2, - sym_extended_name, - sym_literal, - [87551] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2618), 1, - sym_name_identifier, - ACTIONS(2620), 1, - sym_float_number_literal, - ACTIONS(2622), 1, - sym_number_literal, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - ACTIONS(3765), 1, - anon_sym_LPAREN, - ACTIONS(3767), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1884), 1, - sym_name_subexpression, - STATE(2378), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2878), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1893), 2, - sym_string_literal, - sym_char_literal, - STATE(1907), 2, - sym_extended_name, - sym_literal, - [87598] = 4, + ACTIONS(4035), 14, + anon_sym_const, + anon_sym_var, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_match, + anon_sym_if, + anon_sym_do, + anon_sym_while, + anon_sym_for, + anon_sym_loop, + anon_sym_SEMI, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + [94694] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2089), 6, + ACTIONS(2131), 5, anon_sym_PIPE, anon_sym_DASH_GT, - anon_sym_DOT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2087), 9, + ACTIONS(2129), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -97369,166 +104596,186 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [87625] = 4, + [94720] = 5, ACTIONS(3), 1, sym__line_comment, + ACTIONS(4037), 1, + anon_sym_COLON, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2071), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [87652] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(2367), 1, - sym_name_identifier, - ACTIONS(3769), 1, - anon_sym_LPAREN, - ACTIONS(3771), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1944), 1, - sym_name_subexpression, - STATE(2376), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2910), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1943), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - [87699] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(2393), 1, - sym_name_identifier, - ACTIONS(3773), 1, - anon_sym_LPAREN, - ACTIONS(3775), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1914), 1, - sym_name_subexpression, - STATE(2338), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2752), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1885), 2, - sym_extended_name, - sym_literal, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - [87746] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2618), 1, - sym_name_identifier, - ACTIONS(2620), 1, - sym_float_number_literal, - ACTIONS(2622), 1, - sym_number_literal, - ACTIONS(2624), 1, - anon_sym_DQUOTE, - ACTIONS(3765), 1, - anon_sym_LPAREN, - ACTIONS(3767), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1878), 1, - sym_name_subexpression, - STATE(2378), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2878), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1893), 2, - sym_string_literal, - sym_char_literal, - STATE(1907), 2, - sym_extended_name, - sym_literal, - [87793] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [87820] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, + ACTIONS(345), 6, anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94748] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94774] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94802] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94828] = 13, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4001), 1, + anon_sym_AMP, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_PIPE, + ACTIONS(4009), 1, + sym_name_identifier, + STATE(2294), 1, + sym_extended_name, + STATE(2481), 1, + aux_sym_reference_expression_repeat1, + STATE(2589), 1, + aux_sym_variant_name_repeat1, + STATE(2598), 1, + aux_sym_tuple_name_repeat1, + STATE(2991), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4007), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2554), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [94872] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [94900] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [94926] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 4, anon_sym_PIPE, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2091), 9, + ACTIONS(2129), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -97538,349 +104785,32 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [87849] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3779), 1, - anon_sym_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3777), 14, - ts_builtin_sym_end, - anon_sym_namespace, - anon_sym_partition, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [87876] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(2676), 1, - sym_name_identifier, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_SQUOTE, - STATE(1230), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2387), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1887), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1229), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - [87923] = 4, + [94954] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [87950] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [87977] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(841), 1, - sym_float_number_literal, - ACTIONS(843), 1, - sym_number_literal, - ACTIONS(845), 1, - anon_sym_DQUOTE, - ACTIONS(2574), 1, - sym_name_identifier, - ACTIONS(3757), 1, - anon_sym_LPAREN, - ACTIONS(3759), 1, - anon_sym_SQUOTE, - STATE(963), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2339), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1523), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(950), 2, - sym_extended_name, - sym_literal, - STATE(1084), 2, - sym_string_literal, - sym_char_literal, - [88024] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(2584), 1, - sym_name_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, - anon_sym_SQUOTE, - STATE(938), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2389), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1163), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(919), 2, - sym_extended_name, - sym_literal, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - [88071] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2059), 5, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2047), 6, + anon_sym_COLON, + anon_sym_then, + sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2057), 9, + ACTIONS(2045), 7, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_TILDE, anon_sym_AT, - sym_name_identifier, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [88100] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(819), 1, - sym_float_number_literal, - ACTIONS(821), 1, - sym_number_literal, - ACTIONS(823), 1, - anon_sym_DQUOTE, - ACTIONS(2584), 1, - sym_name_identifier, - ACTIONS(3785), 1, - anon_sym_LPAREN, - ACTIONS(3787), 1, - anon_sym_SQUOTE, - STATE(941), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2389), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1163), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(919), 2, - sym_extended_name, - sym_literal, - STATE(929), 2, - sym_string_literal, - sym_char_literal, - [88147] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(709), 1, - sym_float_number_literal, - ACTIONS(711), 1, - sym_number_literal, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(2393), 1, - sym_name_identifier, - ACTIONS(3773), 1, - anon_sym_LPAREN, - ACTIONS(3775), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1906), 1, - sym_name_subexpression, - STATE(2338), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2752), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1885), 2, - sym_extended_name, - sym_literal, - STATE(1929), 2, - sym_string_literal, - sym_char_literal, - [88194] = 5, + [94982] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88223] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88250] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(643), 1, - sym_float_number_literal, - ACTIONS(645), 1, - sym_number_literal, - ACTIONS(647), 1, - anon_sym_DQUOTE, - ACTIONS(2367), 1, - sym_name_identifier, - ACTIONS(3769), 1, - anon_sym_LPAREN, - ACTIONS(3771), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1938), 1, - sym_name_subexpression, - STATE(2376), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2910), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1943), 2, - sym_extended_name, - sym_literal, - STATE(1960), 2, - sym_string_literal, - sym_char_literal, - [88297] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, @@ -97900,3939 +104830,19 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [88326] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2357), 1, - sym_name_identifier, - ACTIONS(2359), 1, - sym_float_number_literal, - ACTIONS(2361), 1, - sym_number_literal, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(3789), 1, - anon_sym_LPAREN, - ACTIONS(3791), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1927), 1, - sym_name_subexpression, - STATE(2388), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2870), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1872), 2, - sym_string_literal, - sym_char_literal, - STATE(1879), 2, - sym_extended_name, - sym_literal, - [88373] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1799), 1, - sym_float_number_literal, - ACTIONS(1801), 1, - sym_number_literal, - ACTIONS(1803), 1, - anon_sym_DQUOTE, - ACTIONS(2638), 1, - sym_name_identifier, - ACTIONS(3793), 1, - anon_sym_LPAREN, - ACTIONS(3795), 1, - anon_sym_SQUOTE, - STATE(1296), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2322), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1793), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1242), 2, - sym_extended_name, - sym_literal, - STATE(1282), 2, - sym_string_literal, - sym_char_literal, - [88420] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(2742), 1, - sym_name_identifier, - ACTIONS(3797), 1, - anon_sym_LPAREN, - ACTIONS(3799), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1817), 1, - sym_name_subexpression, - STATE(2337), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2708), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1775), 2, - sym_extended_name, - sym_literal, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - [88467] = 4, + [95008] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2109), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88494] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1095), 1, - sym_float_number_literal, - ACTIONS(1097), 1, - sym_number_literal, - ACTIONS(1099), 1, - anon_sym_DQUOTE, - ACTIONS(2742), 1, - sym_name_identifier, - ACTIONS(3797), 1, - anon_sym_LPAREN, - ACTIONS(3799), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1811), 1, - sym_name_subexpression, - STATE(2337), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2708), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1775), 2, - sym_extended_name, - sym_literal, - STATE(1784), 2, - sym_string_literal, - sym_char_literal, - [88541] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2357), 1, - sym_name_identifier, - ACTIONS(2359), 1, - sym_float_number_literal, - ACTIONS(2361), 1, - sym_number_literal, - ACTIONS(2363), 1, - anon_sym_DQUOTE, - ACTIONS(3789), 1, - anon_sym_LPAREN, - ACTIONS(3791), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1866), 1, - sym_name_subexpression, - STATE(2388), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2870), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1872), 2, - sym_string_literal, - sym_char_literal, - STATE(1879), 2, - sym_extended_name, - sym_literal, - [88588] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1799), 1, - sym_float_number_literal, - ACTIONS(1801), 1, - sym_number_literal, - ACTIONS(1803), 1, - anon_sym_DQUOTE, - ACTIONS(2638), 1, - sym_name_identifier, - ACTIONS(3793), 1, - anon_sym_LPAREN, - ACTIONS(3795), 1, - anon_sym_SQUOTE, - STATE(1294), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2322), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1793), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1242), 2, - sym_extended_name, - sym_literal, - STATE(1282), 2, - sym_string_literal, - sym_char_literal, - [88635] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88662] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88689] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(281), 1, - sym_float_number_literal, - ACTIONS(283), 1, - sym_number_literal, - ACTIONS(285), 1, - anon_sym_DQUOTE, - ACTIONS(2744), 1, - sym_name_identifier, - ACTIONS(3761), 1, - anon_sym_LPAREN, - ACTIONS(3763), 1, - anon_sym_SQUOTE, - STATE(1349), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2377), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1971), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1334), 2, - sym_string_literal, - sym_char_literal, - STATE(1341), 2, - sym_extended_name, - sym_literal, - [88736] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88765] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3801), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1975), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [88792] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88819] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88846] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88873] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88900] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 3, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [88929] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(2415), 1, - sym_name_identifier, - ACTIONS(3803), 1, - anon_sym_LPAREN, - ACTIONS(3805), 1, - anon_sym_SQUOTE, - STATE(1669), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2375), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2419), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(1795), 2, - sym_extended_name, - sym_literal, - [88976] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 3, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89005] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89034] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 3, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89063] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(2668), 1, - sym_name_identifier, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - anon_sym_SQUOTE, - STATE(1318), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2327), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1965), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1304), 2, - sym_extended_name, - sym_literal, - [89110] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1513), 1, - sym_float_number_literal, - ACTIONS(1515), 1, - sym_number_literal, - ACTIONS(1517), 1, - anon_sym_DQUOTE, - ACTIONS(2492), 1, - sym_name_identifier, - ACTIONS(3811), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_SQUOTE, - STATE(1180), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2353), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1507), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1024), 2, - sym_extended_name, - sym_literal, - STATE(1058), 2, - sym_string_literal, - sym_char_literal, - [89157] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1513), 1, - sym_float_number_literal, - ACTIONS(1515), 1, - sym_number_literal, - ACTIONS(1517), 1, - anon_sym_DQUOTE, - ACTIONS(2492), 1, - sym_name_identifier, - ACTIONS(3811), 1, - anon_sym_LPAREN, - ACTIONS(3813), 1, - anon_sym_SQUOTE, - STATE(1156), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2353), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1507), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1024), 2, - sym_extended_name, - sym_literal, - STATE(1058), 2, - sym_string_literal, - sym_char_literal, - [89204] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(67), 1, - sym_float_number_literal, - ACTIONS(69), 1, - sym_number_literal, - ACTIONS(71), 1, - anon_sym_DQUOTE, - ACTIONS(2415), 1, - sym_name_identifier, - ACTIONS(3803), 1, - anon_sym_LPAREN, - ACTIONS(3805), 1, - anon_sym_SQUOTE, - STATE(1716), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2375), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2419), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1753), 2, - sym_string_literal, - sym_char_literal, - STATE(1795), 2, - sym_extended_name, - sym_literal, - [89251] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89280] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89307] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2399), 1, - sym_name_identifier, - ACTIONS(2401), 1, - sym_float_number_literal, - ACTIONS(2403), 1, - sym_number_literal, - ACTIONS(2405), 1, - anon_sym_DQUOTE, - ACTIONS(3815), 1, - anon_sym_LPAREN, - ACTIONS(3817), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1900), 1, - sym_name_subexpression, - STATE(2365), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2814), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1931), 2, - sym_string_literal, - sym_char_literal, - STATE(1934), 2, - sym_extended_name, - sym_literal, - [89354] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1419), 1, - sym_float_number_literal, - ACTIONS(1421), 1, - sym_number_literal, - ACTIONS(1423), 1, - anon_sym_DQUOTE, - ACTIONS(2674), 1, - sym_name_identifier, - ACTIONS(3819), 1, - anon_sym_LPAREN, - ACTIONS(3821), 1, - anon_sym_SQUOTE, - STATE(821), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2355), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1413), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(793), 2, - sym_extended_name, - sym_literal, - STATE(807), 2, - sym_string_literal, - sym_char_literal, - [89401] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89428] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1419), 1, - sym_float_number_literal, - ACTIONS(1421), 1, - sym_number_literal, - ACTIONS(1423), 1, - anon_sym_DQUOTE, - ACTIONS(2674), 1, - sym_name_identifier, - ACTIONS(3819), 1, - anon_sym_LPAREN, - ACTIONS(3821), 1, - anon_sym_SQUOTE, - STATE(827), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2355), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1413), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(793), 2, - sym_extended_name, - sym_literal, - STATE(807), 2, - sym_string_literal, - sym_char_literal, - [89475] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2646), 1, - sym_name_identifier, - ACTIONS(2648), 1, - sym_float_number_literal, - ACTIONS(2650), 1, - sym_number_literal, - ACTIONS(2652), 1, - anon_sym_DQUOTE, - ACTIONS(3823), 1, - anon_sym_LPAREN, - ACTIONS(3825), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1840), 1, - sym_name_subexpression, - STATE(2386), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2782), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1854), 2, - sym_string_literal, - sym_char_literal, - STATE(1856), 2, - sym_extended_name, - sym_literal, - [89522] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(2582), 1, - sym_name_identifier, - ACTIONS(3827), 1, - anon_sym_LPAREN, - ACTIONS(3829), 1, - anon_sym_SQUOTE, - STATE(774), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2342), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1129), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(765), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - [89569] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2399), 1, - sym_name_identifier, - ACTIONS(2401), 1, - sym_float_number_literal, - ACTIONS(2403), 1, - sym_number_literal, - ACTIONS(2405), 1, - anon_sym_DQUOTE, - ACTIONS(3815), 1, - anon_sym_LPAREN, - ACTIONS(3817), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1915), 1, - sym_name_subexpression, - STATE(2365), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2814), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1931), 2, - sym_string_literal, - sym_char_literal, - STATE(1934), 2, - sym_extended_name, - sym_literal, - [89616] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(621), 1, - sym_float_number_literal, - ACTIONS(623), 1, - sym_number_literal, - ACTIONS(625), 1, - anon_sym_DQUOTE, - ACTIONS(2582), 1, - sym_name_identifier, - ACTIONS(3827), 1, - anon_sym_LPAREN, - ACTIONS(3829), 1, - anon_sym_SQUOTE, - STATE(773), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2342), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1129), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(765), 2, - sym_extended_name, - sym_literal, - STATE(768), 2, - sym_string_literal, - sym_char_literal, - [89663] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2646), 1, - sym_name_identifier, - ACTIONS(2648), 1, - sym_float_number_literal, - ACTIONS(2650), 1, - sym_number_literal, - ACTIONS(2652), 1, - anon_sym_DQUOTE, - ACTIONS(3823), 1, - anon_sym_LPAREN, - ACTIONS(3825), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1839), 1, - sym_name_subexpression, - STATE(2386), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2782), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1854), 2, - sym_string_literal, - sym_char_literal, - STATE(1856), 2, - sym_extended_name, - sym_literal, - [89710] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 7, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89737] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89764] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2498), 1, - sym_name_identifier, - ACTIONS(2502), 1, - sym_float_number_literal, - ACTIONS(2504), 1, - sym_number_literal, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(3831), 1, - anon_sym_LPAREN, - ACTIONS(3833), 1, - anon_sym_SQUOTE, - STATE(1699), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2357), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2496), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1715), 2, - sym_string_literal, - sym_char_literal, - STATE(1729), 2, - sym_extended_name, - sym_literal, - [89811] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(241), 1, - sym_float_number_literal, - ACTIONS(243), 1, - sym_number_literal, - ACTIONS(245), 1, - anon_sym_DQUOTE, - ACTIONS(2676), 1, - sym_name_identifier, - ACTIONS(3781), 1, - anon_sym_LPAREN, - ACTIONS(3783), 1, - anon_sym_SQUOTE, - STATE(1216), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2387), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1887), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1229), 2, - sym_extended_name, - sym_literal, - STATE(1259), 2, - sym_string_literal, - sym_char_literal, - [89858] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2498), 1, - sym_name_identifier, - ACTIONS(2502), 1, - sym_float_number_literal, - ACTIONS(2504), 1, - sym_number_literal, - ACTIONS(2506), 1, - anon_sym_DQUOTE, - ACTIONS(3831), 1, - anon_sym_LPAREN, - ACTIONS(3833), 1, - anon_sym_SQUOTE, - STATE(1696), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2357), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2496), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1715), 2, - sym_string_literal, - sym_char_literal, - STATE(1729), 2, - sym_extended_name, - sym_literal, - [89905] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1977), 1, - anon_sym_type, - ACTIONS(3835), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1975), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [89934] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 3, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [89963] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(203), 1, - sym_float_number_literal, - ACTIONS(205), 1, - sym_number_literal, - ACTIONS(207), 1, - anon_sym_DQUOTE, - ACTIONS(2668), 1, - sym_name_identifier, - ACTIONS(3807), 1, - anon_sym_LPAREN, - ACTIONS(3809), 1, - anon_sym_SQUOTE, - STATE(1311), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2327), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1965), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1302), 2, - sym_string_literal, - sym_char_literal, - STATE(1304), 2, - sym_extended_name, - sym_literal, - [90010] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90039] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3837), 1, - anon_sym_LPAREN, - ACTIONS(3843), 1, - sym_name_identifier, - ACTIONS(3846), 1, - sym_float_number_literal, - ACTIONS(3849), 1, - sym_number_literal, - ACTIONS(3852), 1, - anon_sym_DQUOTE, - ACTIONS(3855), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2609), 1, - sym_name_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3840), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2556), 2, - sym_extended_name, - sym_literal, - STATE(2698), 2, - sym_string_literal, - sym_char_literal, - [90086] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2295), 1, - sym_name_identifier, - ACTIONS(2299), 1, - sym_float_number_literal, - ACTIONS(2301), 1, - sym_number_literal, - ACTIONS(2303), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - anon_sym_LPAREN, - ACTIONS(3860), 1, - anon_sym_SQUOTE, - STATE(1603), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2364), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2293), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1583), 2, - sym_extended_name, - sym_literal, - STATE(1590), 2, - sym_string_literal, - sym_char_literal, - [90133] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2295), 1, - sym_name_identifier, - ACTIONS(2299), 1, - sym_float_number_literal, - ACTIONS(2301), 1, - sym_number_literal, - ACTIONS(2303), 1, - anon_sym_DQUOTE, - ACTIONS(3858), 1, - anon_sym_LPAREN, - ACTIONS(3860), 1, - anon_sym_SQUOTE, - STATE(1614), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2364), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2293), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1583), 2, - sym_extended_name, - sym_literal, - STATE(1590), 2, - sym_string_literal, - sym_char_literal, - [90180] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90207] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90234] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(2666), 1, - sym_name_identifier, - ACTIONS(3862), 1, - anon_sym_LPAREN, - ACTIONS(3864), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1962), 1, - sym_name_subexpression, - STATE(2329), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2942), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1959), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - [90281] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1653), 1, - sym_float_number_literal, - ACTIONS(1655), 1, - sym_number_literal, - ACTIONS(1657), 1, - anon_sym_DQUOTE, - ACTIONS(2580), 1, - sym_name_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - ACTIONS(3868), 1, - anon_sym_SQUOTE, - STATE(1010), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2368), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1647), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - STATE(1026), 2, - sym_extended_name, - sym_literal, - [90328] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1653), 1, - sym_float_number_literal, - ACTIONS(1655), 1, - sym_number_literal, - ACTIONS(1657), 1, - anon_sym_DQUOTE, - ACTIONS(2580), 1, - sym_name_identifier, - ACTIONS(3866), 1, - anon_sym_LPAREN, - ACTIONS(3868), 1, - anon_sym_SQUOTE, - STATE(1006), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2368), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1647), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1023), 2, - sym_string_literal, - sym_char_literal, - STATE(1026), 2, - sym_extended_name, - sym_literal, - [90375] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90402] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1221), 1, - sym_float_number_literal, - ACTIONS(1223), 1, - sym_number_literal, - ACTIONS(1225), 1, - anon_sym_DQUOTE, - ACTIONS(2562), 1, - sym_name_identifier, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3872), 1, - anon_sym_SQUOTE, - STATE(911), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2374), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1215), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(884), 2, - sym_extended_name, - sym_literal, - STATE(899), 2, - sym_string_literal, - sym_char_literal, - [90449] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90478] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1221), 1, - sym_float_number_literal, - ACTIONS(1223), 1, - sym_number_literal, - ACTIONS(1225), 1, - anon_sym_DQUOTE, - ACTIONS(2562), 1, - sym_name_identifier, - ACTIONS(3870), 1, - anon_sym_LPAREN, - ACTIONS(3872), 1, - anon_sym_SQUOTE, - STATE(925), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2374), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1215), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(884), 2, - sym_extended_name, - sym_literal, - STATE(899), 2, - sym_string_literal, - sym_char_literal, - [90525] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90552] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 7, - anon_sym_AMP, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90579] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90606] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(2746), 1, - sym_name_identifier, - ACTIONS(3874), 1, - anon_sym_LPAREN, - ACTIONS(3876), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1941), 1, - sym_name_subexpression, - STATE(2382), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3037), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1968), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - [90653] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(2486), 1, - sym_name_identifier, - ACTIONS(3878), 1, - anon_sym_LPAREN, - ACTIONS(3880), 1, - anon_sym_SQUOTE, - STATE(847), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2330), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1157), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(834), 2, - sym_extended_name, - sym_literal, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - [90700] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1753), 1, - sym_float_number_literal, - ACTIONS(1755), 1, - sym_number_literal, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(2692), 1, - sym_name_identifier, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3884), 1, - anon_sym_SQUOTE, - STATE(1195), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2359), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1747), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1204), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, - sym_string_literal, - sym_char_literal, - [90747] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1005), 1, - sym_float_number_literal, - ACTIONS(1007), 1, - sym_number_literal, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - ACTIONS(2429), 1, - sym_name_identifier, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3888), 1, - anon_sym_SQUOTE, - STATE(730), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2381), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(999), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(738), 2, - sym_string_literal, - sym_char_literal, - STATE(741), 2, - sym_extended_name, - sym_literal, - [90794] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1753), 1, - sym_float_number_literal, - ACTIONS(1755), 1, - sym_number_literal, - ACTIONS(1757), 1, - anon_sym_DQUOTE, - ACTIONS(2692), 1, - sym_name_identifier, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3884), 1, - anon_sym_SQUOTE, - STATE(1207), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2359), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1747), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1204), 2, - sym_extended_name, - sym_literal, - STATE(1239), 2, - sym_string_literal, - sym_char_literal, - [90841] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1005), 1, - sym_float_number_literal, - ACTIONS(1007), 1, - sym_number_literal, - ACTIONS(1009), 1, - anon_sym_DQUOTE, - ACTIONS(2429), 1, - sym_name_identifier, - ACTIONS(3886), 1, - anon_sym_LPAREN, - ACTIONS(3888), 1, - anon_sym_SQUOTE, - STATE(726), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2381), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(999), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(738), 2, - sym_string_literal, - sym_char_literal, - STATE(741), 2, - sym_extended_name, - sym_literal, - [90888] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(2413), 1, - sym_name_identifier, - ACTIONS(3890), 1, - anon_sym_LPAREN, - ACTIONS(3892), 1, - anon_sym_SQUOTE, - STATE(977), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2341), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1529), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1000), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - [90935] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [90962] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(753), 1, - sym_float_number_literal, - ACTIONS(755), 1, - sym_number_literal, - ACTIONS(757), 1, - anon_sym_DQUOTE, - ACTIONS(2486), 1, - sym_name_identifier, - ACTIONS(3878), 1, - anon_sym_LPAREN, - ACTIONS(3880), 1, - anon_sym_SQUOTE, - STATE(843), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2330), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1157), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(834), 2, - sym_extended_name, - sym_literal, - STATE(837), 2, - sym_string_literal, - sym_char_literal, - [91009] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91036] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(2632), 1, - sym_name_identifier, - ACTIONS(3894), 1, - anon_sym_LPAREN, - ACTIONS(3896), 1, - anon_sym_SQUOTE, - STATE(842), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2360), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1209), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(902), 2, - sym_extended_name, - sym_literal, - [91083] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91110] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1403), 1, - sym_float_number_literal, - ACTIONS(1405), 1, - sym_number_literal, - ACTIONS(1407), 1, - anon_sym_DQUOTE, - ACTIONS(2345), 1, - sym_name_identifier, - ACTIONS(3898), 1, - anon_sym_LPAREN, - ACTIONS(3900), 1, - anon_sym_SQUOTE, - STATE(905), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2320), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1397), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(913), 2, - sym_string_literal, - sym_char_literal, - STATE(924), 2, - sym_extended_name, - sym_literal, - [91157] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91184] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1403), 1, - sym_float_number_literal, - ACTIONS(1405), 1, - sym_number_literal, - ACTIONS(1407), 1, - anon_sym_DQUOTE, - ACTIONS(2345), 1, - sym_name_identifier, - ACTIONS(3898), 1, - anon_sym_LPAREN, - ACTIONS(3900), 1, - anon_sym_SQUOTE, - STATE(901), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2320), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1397), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(913), 2, - sym_string_literal, - sym_char_literal, - STATE(924), 2, - sym_extended_name, - sym_literal, - [91231] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91258] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(533), 1, - sym_float_number_literal, - ACTIONS(535), 1, - sym_number_literal, - ACTIONS(537), 1, - anon_sym_DQUOTE, - ACTIONS(2632), 1, - sym_name_identifier, - ACTIONS(3894), 1, - anon_sym_LPAREN, - ACTIONS(3896), 1, - anon_sym_SQUOTE, - STATE(823), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2360), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1209), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(887), 2, - sym_string_literal, - sym_char_literal, - STATE(902), 2, - sym_extended_name, - sym_literal, - [91305] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91334] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(665), 1, - sym_float_number_literal, - ACTIONS(667), 1, - sym_number_literal, - ACTIONS(669), 1, - anon_sym_DQUOTE, - ACTIONS(2746), 1, - sym_name_identifier, - ACTIONS(3874), 1, - anon_sym_LPAREN, - ACTIONS(3876), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1970), 1, - sym_name_subexpression, - STATE(2382), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3037), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1968), 2, - sym_extended_name, - sym_literal, - STATE(1985), 2, - sym_string_literal, - sym_char_literal, - [91381] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(965), 1, - sym_float_number_literal, - ACTIONS(967), 1, - sym_number_literal, - ACTIONS(969), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_name_identifier, - ACTIONS(3902), 1, - anon_sym_LPAREN, - ACTIONS(3904), 1, - anon_sym_SQUOTE, - STATE(708), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2391), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(959), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(713), 2, - sym_string_literal, - sym_char_literal, - STATE(717), 2, - sym_extended_name, - sym_literal, - [91428] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 4, - anon_sym_AMP, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91455] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(965), 1, - sym_float_number_literal, - ACTIONS(967), 1, - sym_number_literal, - ACTIONS(969), 1, - anon_sym_DQUOTE, - ACTIONS(2443), 1, - sym_name_identifier, - ACTIONS(3902), 1, - anon_sym_LPAREN, - ACTIONS(3904), 1, - anon_sym_SQUOTE, - STATE(707), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2391), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(959), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(713), 2, - sym_string_literal, - sym_char_literal, - STATE(717), 2, - sym_extended_name, - sym_literal, - [91502] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91529] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1535), 1, - sym_float_number_literal, - ACTIONS(1537), 1, - sym_number_literal, - ACTIONS(1539), 1, - anon_sym_DQUOTE, - ACTIONS(2413), 1, - sym_name_identifier, - ACTIONS(3890), 1, - anon_sym_LPAREN, - ACTIONS(3892), 1, - anon_sym_SQUOTE, - STATE(1008), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2341), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1529), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1000), 2, - sym_extended_name, - sym_literal, - STATE(1053), 2, - sym_string_literal, - sym_char_literal, - [91576] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91603] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1285), 1, - sym_float_number_literal, - ACTIONS(1287), 1, - sym_number_literal, - ACTIONS(1289), 1, - anon_sym_DQUOTE, - ACTIONS(2435), 1, - sym_name_identifier, - ACTIONS(3906), 1, - anon_sym_LPAREN, - ACTIONS(3908), 1, - anon_sym_SQUOTE, - STATE(845), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2380), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1279), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(857), 2, - sym_string_literal, - sym_char_literal, - STATE(867), 2, - sym_extended_name, - sym_literal, - [91650] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91677] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91704] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(2694), 1, - sym_name_identifier, - ACTIONS(3910), 1, - anon_sym_LPAREN, - ACTIONS(3912), 1, - anon_sym_SQUOTE, - STATE(1194), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2367), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(1232), 2, - sym_extended_name, - sym_literal, - [91751] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1285), 1, - sym_float_number_literal, - ACTIONS(1287), 1, - sym_number_literal, - ACTIONS(1289), 1, - anon_sym_DQUOTE, - ACTIONS(2435), 1, - sym_name_identifier, - ACTIONS(3906), 1, - anon_sym_LPAREN, - ACTIONS(3908), 1, - anon_sym_SQUOTE, - STATE(844), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2380), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1279), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(857), 2, - sym_string_literal, - sym_char_literal, - STATE(867), 2, - sym_extended_name, - sym_literal, - [91798] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(927), 1, - sym_float_number_literal, - ACTIONS(929), 1, - sym_number_literal, - ACTIONS(931), 1, - anon_sym_DQUOTE, - ACTIONS(2694), 1, - sym_name_identifier, - ACTIONS(3910), 1, - anon_sym_LPAREN, - ACTIONS(3912), 1, - anon_sym_SQUOTE, - STATE(1214), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2367), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1763), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1226), 2, - sym_string_literal, - sym_char_literal, - STATE(1232), 2, - sym_extended_name, - sym_literal, - [91845] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(2686), 1, - sym_name_identifier, - ACTIONS(3914), 1, - anon_sym_LPAREN, - ACTIONS(3916), 1, - anon_sym_SQUOTE, - STATE(1065), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2385), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1687), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(961), 2, - sym_extended_name, - sym_literal, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - [91892] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [91919] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2119), 1, - sym_name_identifier, - ACTIONS(2123), 1, - sym_float_number_literal, - ACTIONS(2125), 1, - sym_number_literal, - ACTIONS(2127), 1, - anon_sym_DQUOTE, - ACTIONS(3918), 1, - anon_sym_LPAREN, - ACTIONS(3920), 1, - anon_sym_SQUOTE, - STATE(1514), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2369), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2117), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1538), 2, - sym_extended_name, - sym_literal, - STATE(1550), 2, - sym_string_literal, - sym_char_literal, - [91966] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2119), 1, - sym_name_identifier, - ACTIONS(2123), 1, - sym_float_number_literal, - ACTIONS(2125), 1, - sym_number_literal, - ACTIONS(2127), 1, - anon_sym_DQUOTE, - ACTIONS(3918), 1, - anon_sym_LPAREN, - ACTIONS(3920), 1, - anon_sym_SQUOTE, - STATE(1528), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2369), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2117), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1538), 2, - sym_extended_name, - sym_literal, - STATE(1550), 2, - sym_string_literal, - sym_char_literal, - [92013] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 4, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92040] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(731), 1, - sym_float_number_literal, - ACTIONS(733), 1, - sym_number_literal, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(2686), 1, - sym_name_identifier, - ACTIONS(3914), 1, - anon_sym_LPAREN, - ACTIONS(3916), 1, - anon_sym_SQUOTE, - STATE(983), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2385), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1687), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(961), 2, - sym_extended_name, - sym_literal, - STATE(971), 2, - sym_string_literal, - sym_char_literal, - [92087] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92114] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(2369), 1, - sym_name_identifier, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_SQUOTE, - STATE(1055), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2350), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1477), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1077), 2, - sym_extended_name, - sym_literal, - [92161] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(597), 1, - sym_float_number_literal, - ACTIONS(599), 1, - sym_number_literal, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(2660), 1, - sym_name_identifier, - ACTIONS(3741), 1, - anon_sym_LPAREN, - ACTIONS(3743), 1, - anon_sym_SQUOTE, - STATE(739), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2358), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(591), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(690), 2, - sym_string_literal, - sym_char_literal, - STATE(695), 2, - sym_extended_name, - sym_literal, - [92208] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2191), 1, - sym_name_identifier, - ACTIONS(2195), 1, - sym_float_number_literal, - ACTIONS(2197), 1, - sym_number_literal, - ACTIONS(2199), 1, - anon_sym_DQUOTE, - ACTIONS(3745), 1, - anon_sym_LPAREN, - ACTIONS(3747), 1, - anon_sym_SQUOTE, - STATE(1643), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2363), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2189), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1599), 2, - sym_extended_name, - sym_literal, - STATE(1632), 2, - sym_string_literal, - sym_char_literal, - [92255] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 7, - anon_sym_elif, - anon_sym_else, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92282] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(497), 1, - sym_float_number_literal, - ACTIONS(499), 1, - sym_number_literal, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(2484), 1, - sym_name_identifier, - ACTIONS(3926), 1, - anon_sym_LPAREN, - ACTIONS(3928), 1, - anon_sym_SQUOTE, - STATE(673), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2319), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(491), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(668), 2, - sym_extended_name, - sym_literal, - STATE(679), 2, - sym_string_literal, - sym_char_literal, - [92329] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(497), 1, - sym_float_number_literal, - ACTIONS(499), 1, - sym_number_literal, - ACTIONS(501), 1, - anon_sym_DQUOTE, - ACTIONS(2484), 1, - sym_name_identifier, - ACTIONS(3926), 1, - anon_sym_LPAREN, - ACTIONS(3928), 1, - anon_sym_SQUOTE, - STATE(670), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2319), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(491), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(668), 2, - sym_extended_name, - sym_literal, - STATE(679), 2, - sym_string_literal, - sym_char_literal, - [92376] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(949), 1, - sym_float_number_literal, - ACTIONS(951), 1, - sym_number_literal, - ACTIONS(953), 1, - anon_sym_DQUOTE, - ACTIONS(2369), 1, - sym_name_identifier, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_SQUOTE, - STATE(1061), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2350), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1477), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(954), 2, - sym_string_literal, - sym_char_literal, - STATE(1077), 2, - sym_extended_name, - sym_literal, - [92423] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 3, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92452] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 6, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92479] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2259), 1, - sym_float_number_literal, - ACTIONS(2261), 1, - sym_number_literal, - ACTIONS(2263), 1, - anon_sym_DQUOTE, - ACTIONS(2682), 1, - sym_name_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3932), 1, - anon_sym_SQUOTE, - STATE(1567), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2333), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2253), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1573), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - [92526] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2259), 1, - sym_float_number_literal, - ACTIONS(2261), 1, - sym_number_literal, - ACTIONS(2263), 1, - anon_sym_DQUOTE, - ACTIONS(2682), 1, - sym_name_identifier, - ACTIONS(3930), 1, - anon_sym_LPAREN, - ACTIONS(3932), 1, - anon_sym_SQUOTE, - STATE(1563), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2333), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2253), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1573), 2, - sym_extended_name, - sym_literal, - STATE(1641), 2, - sym_string_literal, - sym_char_literal, - [92573] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92602] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3708), 1, - anon_sym_type, - ACTIONS(3934), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3704), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [92631] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92660] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(2684), 1, - sym_name_identifier, - ACTIONS(3936), 1, - anon_sym_LPAREN, - ACTIONS(3938), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2002), 1, - sym_name_subexpression, - STATE(2351), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3007), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(2005), 2, - sym_extended_name, - sym_literal, - [92707] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92734] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(2696), 1, - sym_name_identifier, - ACTIONS(3940), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_SQUOTE, - STATE(866), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2373), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1367), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(888), 2, - sym_extended_name, - sym_literal, - [92781] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1199), 1, - sym_float_number_literal, - ACTIONS(1201), 1, - sym_number_literal, - ACTIONS(1203), 1, - anon_sym_DQUOTE, - ACTIONS(2716), 1, - sym_name_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_SQUOTE, - STATE(805), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2326), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1193), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(794), 2, - sym_extended_name, - sym_literal, - STATE(798), 2, - sym_string_literal, - sym_char_literal, - [92828] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1027), 1, - sym_float_number_literal, - ACTIONS(1029), 1, - sym_number_literal, - ACTIONS(1031), 1, - anon_sym_DQUOTE, - ACTIONS(2696), 1, - sym_name_identifier, - ACTIONS(3940), 1, - anon_sym_LPAREN, - ACTIONS(3942), 1, - anon_sym_SQUOTE, - STATE(872), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2373), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1367), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(878), 2, - sym_string_literal, - sym_char_literal, - STATE(888), 2, - sym_extended_name, - sym_literal, - [92875] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92904] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1199), 1, - sym_float_number_literal, - ACTIONS(1201), 1, - sym_number_literal, - ACTIONS(1203), 1, - anon_sym_DQUOTE, - ACTIONS(2716), 1, - sym_name_identifier, - ACTIONS(3944), 1, - anon_sym_LPAREN, - ACTIONS(3946), 1, - anon_sym_SQUOTE, - STATE(809), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2326), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1193), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(794), 2, - sym_extended_name, - sym_literal, - STATE(798), 2, - sym_string_literal, - sym_char_literal, - [92951] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [92980] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93007] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93036] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93065] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93092] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(2564), 1, - sym_name_identifier, - ACTIONS(3948), 1, - anon_sym_LPAREN, - ACTIONS(3950), 1, - anon_sym_SQUOTE, - STATE(1124), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2321), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(1140), 2, - sym_extended_name, - sym_literal, - [93139] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93166] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(581), 1, - sym_float_number_literal, - ACTIONS(583), 1, - sym_number_literal, - ACTIONS(585), 1, - anon_sym_DQUOTE, - ACTIONS(2564), 1, - sym_name_identifier, - ACTIONS(3948), 1, - anon_sym_LPAREN, - ACTIONS(3950), 1, - anon_sym_SQUOTE, - STATE(1118), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2321), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(1741), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1130), 2, - sym_string_literal, - sym_char_literal, - STATE(1140), 2, - sym_extended_name, - sym_literal, - [93213] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(797), 1, - sym_float_number_literal, - ACTIONS(799), 1, - sym_number_literal, - ACTIONS(801), 1, - anon_sym_DQUOTE, - ACTIONS(2666), 1, - sym_name_identifier, - ACTIONS(3862), 1, - anon_sym_LPAREN, - ACTIONS(3864), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1946), 1, - sym_name_subexpression, - STATE(2329), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2942), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1959), 2, - sym_extended_name, - sym_literal, - STATE(1998), 2, - sym_string_literal, - sym_char_literal, - [93260] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(2570), 1, - sym_name_identifier, - ACTIONS(3952), 1, - anon_sym_LPAREN, - ACTIONS(3954), 1, - anon_sym_SQUOTE, - STATE(1744), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2340), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2568), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1825), 2, - sym_extended_name, - sym_literal, - [93307] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(775), 1, - sym_float_number_literal, - ACTIONS(777), 1, - sym_number_literal, - ACTIONS(779), 1, - anon_sym_DQUOTE, - ACTIONS(2570), 1, - sym_name_identifier, - ACTIONS(3952), 1, - anon_sym_LPAREN, - ACTIONS(3954), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(1755), 1, - sym_name_subexpression, - STATE(2340), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2568), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1680), 2, - sym_string_literal, - sym_char_literal, - STATE(1825), 2, - sym_extended_name, - sym_literal, - [93354] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(687), 1, - sym_float_number_literal, - ACTIONS(689), 1, - sym_number_literal, - ACTIONS(691), 1, - anon_sym_DQUOTE, - ACTIONS(2684), 1, - sym_name_identifier, - ACTIONS(3936), 1, - anon_sym_LPAREN, - ACTIONS(3938), 1, - anon_sym_SQUOTE, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2007), 1, - sym_name_subexpression, - STATE(2351), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3007), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1952), 2, - sym_string_literal, - sym_char_literal, - STATE(2005), 2, - sym_extended_name, - sym_literal, - [93401] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93428] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(905), 1, - sym_float_number_literal, - ACTIONS(907), 1, - sym_number_literal, - ACTIONS(909), 1, - anon_sym_DQUOTE, - ACTIONS(2704), 1, - sym_name_identifier, - ACTIONS(3956), 1, - anon_sym_LPAREN, - ACTIONS(3958), 1, - anon_sym_SQUOTE, - STATE(727), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2334), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(899), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - STATE(751), 2, - sym_extended_name, - sym_literal, - [93475] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(905), 1, - sym_float_number_literal, - ACTIONS(907), 1, - sym_number_literal, - ACTIONS(909), 1, - anon_sym_DQUOTE, - ACTIONS(2704), 1, - sym_name_identifier, - ACTIONS(3956), 1, - anon_sym_LPAREN, - ACTIONS(3958), 1, - anon_sym_SQUOTE, - STATE(733), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2334), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(899), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(734), 2, - sym_string_literal, - sym_char_literal, - STATE(751), 2, - sym_extended_name, - sym_literal, - [93522] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3662), 1, - anon_sym_type, - ACTIONS(3960), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3658), 13, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_use, - anon_sym_import, - anon_sym_alias, - anon_sym_let, - anon_sym_decl, - anon_sym_def, - anon_sym_struct, - anon_sym_class, - anon_sym_basic, - anon_sym_abstract, - anon_sym_typeclass, - [93551] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 6, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93578] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, + ACTIONS(2087), 5, anon_sym_AMP, anon_sym_PIPE, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2015), 9, + ACTIONS(2085), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -101842,1536 +104852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [93607] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(2311), 1, - sym_name_identifier, - ACTIONS(3962), 1, - anon_sym_LPAREN, - ACTIONS(3964), 1, - anon_sym_SQUOTE, - STATE(1623), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2379), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2309), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1646), 2, - sym_extended_name, - sym_literal, - [93654] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(1147), 1, - sym_float_number_literal, - ACTIONS(1149), 1, - sym_number_literal, - ACTIONS(1151), 1, - anon_sym_DQUOTE, - ACTIONS(2311), 1, - sym_name_identifier, - ACTIONS(3962), 1, - anon_sym_LPAREN, - ACTIONS(3964), 1, - anon_sym_SQUOTE, - STATE(1621), 1, - sym_name_subexpression, - STATE(1745), 1, - aux_sym_name_expression_repeat2, - STATE(2379), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2309), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(1631), 2, - sym_string_literal, - sym_char_literal, - STATE(1646), 2, - sym_extended_name, - sym_literal, - [93701] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93729] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93757] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3966), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [93781] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [93807] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93835] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 5, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [93861] = 13, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3968), 1, - anon_sym_AMP, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_PIPE, - ACTIONS(3976), 1, - sym_name_identifier, - STATE(2166), 1, - sym_extended_name, - STATE(2352), 1, - aux_sym_reference_expression_repeat1, - STATE(2441), 1, - aux_sym_tuple_name_repeat1, - STATE(2445), 1, - aux_sym_variant_name_repeat1, - STATE(2801), 1, - sym_any_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3974), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2417), 3, - sym_tuple_name, - sym_variant_name, - sym_annotated_name, - [93905] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [93931] = 13, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3968), 1, - anon_sym_AMP, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_PIPE, - ACTIONS(3976), 1, - sym_name_identifier, - STATE(2166), 1, - sym_extended_name, - STATE(2352), 1, - aux_sym_reference_expression_repeat1, - STATE(2441), 1, - aux_sym_tuple_name_repeat1, - STATE(2445), 1, - aux_sym_variant_name_repeat1, - STATE(2793), 1, - sym_any_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3974), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2417), 3, - sym_tuple_name, - sym_variant_name, - sym_annotated_name, - [93975] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94003] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94031] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94059] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94085] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94111] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94137] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94163] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94189] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94215] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94243] = 13, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3968), 1, - anon_sym_AMP, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_PIPE, - ACTIONS(3976), 1, - sym_name_identifier, - STATE(2166), 1, - sym_extended_name, - STATE(2352), 1, - aux_sym_reference_expression_repeat1, - STATE(2441), 1, - aux_sym_tuple_name_repeat1, - STATE(2445), 1, - aux_sym_variant_name_repeat1, - STATE(2785), 1, - sym_any_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3974), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2417), 3, - sym_tuple_name, - sym_variant_name, - sym_annotated_name, - [94287] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94313] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94339] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94367] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 4, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94395] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94423] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3978), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [94447] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94475] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94503] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94529] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94555] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94581] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94607] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94633] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94659] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94687] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94713] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94741] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94769] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 5, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94795] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94823] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94849] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 7, - anon_sym_AMP, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94875] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 5, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94901] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94927] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [94953] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [94981] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 5, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95007] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95035] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 7, - anon_sym_AMP, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95061] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 3, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95087] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95113] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95139] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95165] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95191] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95217] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95245] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95271] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 5, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95297] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95325] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 3, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 11, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_RBRACK, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95351] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95379] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95407] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 5, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95433] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 5, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95459] = 4, + [95034] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, ACTIONS(2075), 5, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_DOT, sym_operator, sym_number_literal, anon_sym_SQUOTE, @@ -103385,19 +104874,41 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [95485] = 4, + [95060] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2093), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, + ACTIONS(303), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2097), 7, + anon_sym_AMP, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2091), 9, + [95086] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -103407,7 +104918,194 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [95511] = 4, + [95112] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95138] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95164] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2047), 6, + anon_sym_COLON, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2045), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95192] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [95218] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1999), 6, + anon_sym_COLON, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1997), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95246] = 13, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4001), 1, + anon_sym_AMP, + ACTIONS(4003), 1, + anon_sym_LPAREN, + ACTIONS(4005), 1, + anon_sym_PIPE, + ACTIONS(4009), 1, + sym_name_identifier, + STATE(2294), 1, + sym_extended_name, + STATE(2481), 1, + aux_sym_reference_expression_repeat1, + STATE(2589), 1, + aux_sym_variant_name_repeat1, + STATE(2598), 1, + aux_sym_tuple_name_repeat1, + STATE(3113), 1, + sym_any_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4007), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2554), 3, + sym_tuple_name, + sym_variant_name, + sym_annotated_name, + [95290] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 5, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95316] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95342] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, @@ -103415,7 +105113,7 @@ static const uint16_t ts_small_parse_table[] = { sym__block_comment, ACTIONS(2071), 5, anon_sym_PIPE, - anon_sym_DOT, + anon_sym_DASH_GT, sym_operator, sym_number_literal, anon_sym_SQUOTE, @@ -103429,14 +105127,1229 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [95537] = 5, + [95368] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(2061), 1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 5, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95394] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 5, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95420] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, anon_sym_DOT, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95448] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95474] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 5, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95500] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1995), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1993), 6, + anon_sym_COLON, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(1991), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95528] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2013), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2015), 7, + anon_sym_COLON, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [95554] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 3, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 11, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_RBRACK, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95580] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2037), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2039), 7, + anon_sym_COLON, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [95606] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2021), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + ACTIONS(2023), 7, + anon_sym_COLON, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + [95632] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4039), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95659] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95684] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95709] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95734] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95759] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95786] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 6, + anon_sym_do, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95811] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95836] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95861] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95886] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95911] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95936] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95961] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [95986] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 6, + anon_sym_while, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96011] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96036] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96061] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96086] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96111] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96136] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96161] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96186] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96213] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4041), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96240] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96265] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96290] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96315] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96340] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96365] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2097), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96390] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96415] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96440] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96465] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96490] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96515] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4043), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96542] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96567] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96592] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96619] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96644] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2127), 6, + anon_sym_then, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(317), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96669] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 6, + anon_sym_AMP, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96694] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2133), 1, + anon_sym_DOT, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96721] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96746] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96771] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4045), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96798] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96823] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, ACTIONS(2067), 4, anon_sym_PIPE, sym_operator, @@ -103452,13 +106365,20 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [95565] = 4, + [96848] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2053), 7, + ACTIONS(2097), 6, + anon_sym_with, + anon_sym_DOT, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(303), 7, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -103466,49 +106386,18 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - ACTIONS(2055), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95591] = 4, + [96873] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2109), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95617] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 5, + ACTIONS(2087), 4, anon_sym_PIPE, - anon_sym_DOT, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2083), 9, + ACTIONS(2085), 9, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_TILDE, @@ -103518,2410 +106407,85 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [95643] = 3, + [96898] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 4, + anon_sym_PIPE, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96923] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96947] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [96971] = 12, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3980), 14, - anon_sym_const, - anon_sym_var, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_match, - anon_sym_if, - anon_sym_do, - anon_sym_while, - anon_sym_for, - anon_sym_loop, - anon_sym_SEMI, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - [95667] = 13, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3982), 1, - anon_sym_AMP, - ACTIONS(3984), 1, + ACTIONS(3538), 1, anon_sym_LPAREN, - ACTIONS(3986), 1, - anon_sym_PIPE, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2166), 1, - sym_extended_name, - STATE(2271), 1, - aux_sym_tuple_name_repeat1, - STATE(2274), 1, - aux_sym_variant_name_repeat1, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2467), 1, - sym_any_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2417), 3, - sym_tuple_name, - sym_variant_name, - sym_annotated_name, - [95711] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95737] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95763] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 4, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95791] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95819] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 4, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95847] = 13, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3968), 1, - anon_sym_AMP, - ACTIONS(3970), 1, - anon_sym_LPAREN, - ACTIONS(3972), 1, - anon_sym_PIPE, - ACTIONS(3976), 1, - sym_name_identifier, - STATE(2166), 1, - sym_extended_name, - STATE(2352), 1, - aux_sym_reference_expression_repeat1, - STATE(2441), 1, - aux_sym_tuple_name_repeat1, - STATE(2445), 1, - aux_sym_variant_name_repeat1, - STATE(2611), 1, - sym_any_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3974), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2417), 3, - sym_tuple_name, - sym_variant_name, - sym_annotated_name, - [95891] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 7, - anon_sym_AMP, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95917] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2071), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95943] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2085), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [95969] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 5, - anon_sym_PIPE, - anon_sym_DASH_GT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [95995] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2075), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [96021] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 4, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96049] = 14, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(3992), 1, - anon_sym_LPAREN, - STATE(209), 1, + STATE(167), 1, sym_type_expression, - STATE(1364), 1, + STATE(1383), 1, sym_parametrized_type, - STATE(1427), 1, - sym_scoped_any_type, - STATE(1428), 1, + STATE(1478), 1, sym_extended_scoped_any_type, - STATE(2020), 1, - aux_sym_reference_expression_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - STATE(2756), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(3994), 2, - anon_sym_TILDE, - anon_sym_AT, - [96095] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96123] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2079), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [96149] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96177] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2081), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [96203] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 5, - anon_sym_PIPE, - anon_sym_DOT, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96229] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_AMP, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96255] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2089), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [96281] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 4, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96309] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2107), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [96335] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2053), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - ACTIONS(2055), 7, - anon_sym_AMP, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - [96361] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 6, - anon_sym_elif, - anon_sym_else, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 8, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96387] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 4, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96412] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96437] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 5, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96464] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96489] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96514] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 5, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96541] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96566] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96591] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96618] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96645] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96672] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96697] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96724] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96749] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96774] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96799] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96824] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96851] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96876] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96901] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 5, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96928] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96953] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [96978] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97003] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97028] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97053] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97080] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97105] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97132] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97159] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97186] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97211] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97236] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2019), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2063), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97261] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97288] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97315] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97340] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97367] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97394] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97419] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97444] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2019), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2017), 5, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2015), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97471] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97496] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97521] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97548] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97573] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2103), 5, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2101), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97600] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97625] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97650] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97675] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97700] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97725] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97750] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97775] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 6, - anon_sym_AMP, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97800] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2079), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2077), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97825] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97850] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2075), 6, - anon_sym_do, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2073), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97875] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 6, - anon_sym_AMP, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97900] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2071), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2069), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97925] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2081), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(313), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97950] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [97977] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2089), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2087), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98002] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3996), 1, - anon_sym_LPAREN, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4001), 2, - sym_type_identifier, - sym_abstract_type_identifier, - ACTIONS(4004), 2, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(3999), 6, - anon_sym_TILDE, - anon_sym_AT, - sym_typeclass_identifier, - sym_name_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98035] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2107), 6, - anon_sym_with, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2105), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98060] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 4, - anon_sym_PIPE, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98085] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2067), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2065), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98112] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2085), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2083), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98137] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2109), 6, - anon_sym_then, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(333), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98162] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2055), 6, - anon_sym_while, - anon_sym_DOT, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2053), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98187] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 6, - anon_sym_AMP, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98212] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2061), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98239] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 6, - anon_sym_AMP, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98264] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2095), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98291] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(2055), 1, - anon_sym_DOT, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2059), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2057), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98318] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98342] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_with, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98366] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 5, - anon_sym_do, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98390] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2073), 12, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_DOT, - sym_name_identifier, - [98412] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 5, - anon_sym_while, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98436] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(2093), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(2091), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98460] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2105), 12, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_DOT, - sym_name_identifier, - [98482] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(487), 5, - anon_sym_then, - sym_name_identifier, - sym_operator, - sym_number_literal, - anon_sym_SQUOTE, - ACTIONS(485), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_type_identifier, - sym_abstract_type_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - [98506] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2069), 12, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_AT, - anon_sym_DOT, - sym_name_identifier, - [98528] = 12, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3193), 1, - anon_sym_LPAREN, - ACTIONS(4008), 1, - sym_name_identifier, - STATE(209), 1, - sym_type_expression, - STATE(1364), 1, - sym_parametrized_type, - STATE(1462), 1, + STATE(1486), 1, sym_scoped_any_type, - STATE(2168), 1, + STATE(1967), 1, aux_sym_reference_expression_repeat1, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -105929,22 +106493,60 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(4006), 2, + ACTIONS(4047), 2, anon_sym_TILDE, anon_sym_AT, - [98568] = 4, + [97011] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2013), 12, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_DOT, + sym_name_identifier, + [97033] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2037), 12, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_AMP, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_DOT, + sym_name_identifier, + [97055] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(487), 5, - anon_sym_with, + ACTIONS(2131), 5, + anon_sym_then, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(485), 7, + ACTIONS(2129), 7, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -105952,19 +106554,19 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [98592] = 4, + [97079] = 4, ACTIONS(3), 1, sym__line_comment, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - ACTIONS(2093), 5, + ACTIONS(2067), 5, anon_sym_do, sym_name_identifier, sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(2091), 7, + ACTIONS(2065), 7, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, @@ -105972,24 +106574,84 @@ static const uint16_t ts_small_parse_table[] = { sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [98616] = 12, + [97103] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97127] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97151] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97175] = 12, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3193), 1, + ACTIONS(3538), 1, anon_sym_LPAREN, - STATE(209), 1, + ACTIONS(4051), 1, + sym_name_identifier, + STATE(167), 1, sym_type_expression, - STATE(1364), 1, + STATE(1383), 1, sym_parametrized_type, - STATE(1427), 1, + STATE(1497), 1, sym_scoped_any_type, - STATE(1466), 1, - sym_extended_scoped_any_type, - STATE(2048), 1, + STATE(2307), 1, aux_sym_reference_expression_repeat1, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -105997,619 +106659,1159 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(4010), 2, + ACTIONS(4049), 2, anon_sym_TILDE, anon_sym_AT, - [98656] = 10, - ACTIONS(5), 1, + [97215] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_do, sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4014), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2139), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2300), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98691] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4016), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2142), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2305), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98726] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4018), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2064), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2291), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98761] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4004), 2, + sym_operator, sym_number_literal, anon_sym_SQUOTE, - ACTIONS(3999), 9, + ACTIONS(343), 7, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, - sym_typeclass_identifier, - sym_name_identifier, sym_type_identifier, sym_abstract_type_identifier, sym_float_number_literal, anon_sym_DQUOTE, - [98784] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4020), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, + [97239] = 4, + ACTIONS(3), 1, sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(2059), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, - STATE(2135), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2281), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98819] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, + sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4022), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, + sym_float_number_literal, + anon_sym_DQUOTE, + [97263] = 4, + ACTIONS(3), 1, sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(2067), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 7, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_AT, - STATE(2063), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2277), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98854] = 10, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97287] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97311] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97335] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2021), 12, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_AMP, anon_sym_LPAREN, - ACTIONS(4024), 1, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_DASH_GT, - STATE(2346), 1, + anon_sym_TILDE, + anon_sym_AT, + anon_sym_DOT, + sym_name_identifier, + [97357] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97381] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97405] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97429] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97453] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97477] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97501] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_do, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97525] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2059), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2057), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97549] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2087), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2085), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97573] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2071), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2069), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97597] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_then, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97621] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2131), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2129), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97645] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2067), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2065), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97669] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(2075), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(2073), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97693] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_while, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97717] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_with, + sym_name_identifier, + sym_operator, + sym_number_literal, + anon_sym_SQUOTE, + ACTIONS(343), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_type_identifier, + sym_abstract_type_identifier, + sym_float_number_literal, + anon_sym_DQUOTE, + [97741] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2728), 1, + sym_name_identifier, + ACTIONS(4053), 1, + anon_sym_LPAREN, + STATE(798), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2269), 1, + aux_sym_name_expression_repeat2, + STATE(2475), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1111), 2, + anon_sym_TILDE, + anon_sym_AT, + [97778] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3378), 1, + sym_name_identifier, + ACTIONS(4055), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2181), 1, + aux_sym_name_expression_repeat2, + STATE(2515), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3376), 2, + anon_sym_TILDE, + anon_sym_AT, + [97815] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2479), 1, + sym_name_identifier, + ACTIONS(4057), 1, + anon_sym_LPAREN, + STATE(1705), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2199), 1, + aux_sym_name_expression_repeat2, + STATE(2493), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2888), 2, + anon_sym_TILDE, + anon_sym_AT, + [97852] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4061), 1, + anon_sym_DASH_GT, + STATE(2534), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2092), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2427), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [97887] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2814), 1, + sym_name_identifier, + ACTIONS(4063), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2247), 1, + aux_sym_name_expression_repeat2, + STATE(2500), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2329), 2, + anon_sym_TILDE, + anon_sym_AT, + [97924] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2515), 1, + sym_name_identifier, + ACTIONS(4065), 1, + anon_sym_LPAREN, + STATE(1841), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2230), 1, + aux_sym_name_expression_repeat2, + STATE(2526), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2924), 2, + anon_sym_TILDE, + anon_sym_AT, + [97961] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3372), 1, + sym_name_identifier, + ACTIONS(4067), 1, + anon_sym_LPAREN, + STATE(613), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2200), 1, + aux_sym_name_expression_repeat2, + STATE(2546), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3370), 2, + anon_sym_TILDE, + anon_sym_AT, + [97998] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2507), 1, + sym_name_identifier, + ACTIONS(4069), 1, + anon_sym_LPAREN, + STATE(1713), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2210), 1, + aux_sym_name_expression_repeat2, + STATE(2518), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2818), 2, + anon_sym_TILDE, + anon_sym_AT, + [98035] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2674), 1, + sym_name_identifier, + ACTIONS(4071), 1, + anon_sym_LPAREN, + STATE(754), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2289), 1, + aux_sym_name_expression_repeat2, + STATE(2503), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1771), 2, + anon_sym_TILDE, + anon_sym_AT, + [98072] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2560), 1, + sym_name_identifier, + ACTIONS(4073), 1, + anon_sym_LPAREN, + STATE(788), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2221), 1, + aux_sym_name_expression_repeat2, + STATE(2542), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(795), 2, + anon_sym_TILDE, + anon_sym_AT, + [98109] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2481), 1, + sym_name_identifier, + ACTIONS(4075), 1, + anon_sym_LPAREN, + STATE(967), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2232), 1, + aux_sym_name_expression_repeat2, + STATE(2550), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1339), 2, + anon_sym_TILDE, + anon_sym_AT, + [98146] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2513), 1, + sym_name_identifier, + ACTIONS(4077), 1, + anon_sym_LPAREN, + STATE(735), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2263), 1, + aux_sym_name_expression_repeat2, + STATE(2519), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1269), 2, + anon_sym_TILDE, + anon_sym_AT, + [98183] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2441), 1, + sym_name_identifier, + ACTIONS(4079), 1, + anon_sym_LPAREN, + STATE(1650), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2243), 1, + aux_sym_name_expression_repeat2, + STATE(2509), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2439), 2, + anon_sym_TILDE, + anon_sym_AT, + [98220] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4081), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2047), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2447), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [98255] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4083), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2154), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2462), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [98290] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3483), 1, + sym_name_identifier, + ACTIONS(4085), 1, + anon_sym_LPAREN, + STATE(660), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2254), 1, + aux_sym_name_expression_repeat2, + STATE(2485), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3481), 2, + anon_sym_TILDE, + anon_sym_AT, + [98327] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4087), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2156), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2422), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [98362] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4089), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2172), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2412), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [98397] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2606), 1, + sym_name_identifier, + ACTIONS(4091), 1, + anon_sym_LPAREN, + STATE(753), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2229), 1, + aux_sym_name_expression_repeat2, + STATE(2470), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(779), 2, + anon_sym_TILDE, + anon_sym_AT, + [98434] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + sym_name_identifier, + ACTIONS(4093), 1, + anon_sym_LPAREN, + STATE(1286), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2178), 1, + aux_sym_name_expression_repeat2, + STATE(2521), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1895), 2, + anon_sym_TILDE, + anon_sym_AT, + [98471] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2652), 1, + sym_name_identifier, + ACTIONS(4095), 1, + anon_sym_LPAREN, + STATE(765), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2265), 1, + aux_sym_name_expression_repeat2, + STATE(2535), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(391), 2, + anon_sym_TILDE, + anon_sym_AT, + [98508] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2600), 1, + sym_name_identifier, + ACTIONS(4097), 1, + anon_sym_LPAREN, + STATE(923), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2276), 1, + aux_sym_name_expression_repeat2, + STATE(2469), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1325), 2, + anon_sym_TILDE, + anon_sym_AT, + [98545] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2654), 1, + sym_name_identifier, + ACTIONS(4099), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2248), 1, + aux_sym_name_expression_repeat2, + STATE(2548), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1379), 2, + anon_sym_TILDE, + anon_sym_AT, + [98582] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4101), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2158), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2439), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [98617] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2736), 1, + sym_name_identifier, + ACTIONS(4103), 1, + anon_sym_LPAREN, + STATE(834), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2287), 1, + aux_sym_name_expression_repeat2, + STATE(2506), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(835), 2, + anon_sym_TILDE, + anon_sym_AT, + [98654] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4105), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, STATE(2079), 2, sym_extended_name, aux_sym_function_definition_repeat1, - STATE(2309), 2, + STATE(2420), 2, sym_annotated_abstract_type, aux_sym_function_declaration_repeat1, - [98889] = 10, + [98689] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, + ACTIONS(2836), 1, sym_name_identifier, - ACTIONS(4012), 1, + ACTIONS(4107), 1, anon_sym_LPAREN, - ACTIONS(4026), 1, - anon_sym_DASH_GT, - STATE(2346), 1, + STATE(1561), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2298), 1, + aux_sym_name_expression_repeat2, + STATE(2539), 1, aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2133), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2280), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98924] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, + ACTIONS(185), 2, + sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4028), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(2177), 2, anon_sym_TILDE, anon_sym_AT, - STATE(2081), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2275), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98959] = 10, + [98726] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, + ACTIONS(3538), 1, anon_sym_LPAREN, - ACTIONS(4030), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2144), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2318), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [98994] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2143), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2296), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99029] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2129), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2290), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99064] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4036), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2123), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2304), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99099] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4038), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2071), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2294), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99134] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4040), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2140), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2301), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99169] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4042), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2078), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2269), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99204] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4044), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2117), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2297), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99239] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4046), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2126), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2310), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99274] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4048), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2083), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2299), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99309] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4050), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2066), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2316), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99344] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4052), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2096), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2273), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99379] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4054), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2103), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2268), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99414] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4056), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2116), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2311), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99449] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4012), 1, - anon_sym_LPAREN, - ACTIONS(4058), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2088), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - STATE(2267), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [99484] = 11, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3193), 1, - anon_sym_LPAREN, - STATE(209), 1, + STATE(167), 1, sym_type_expression, - STATE(1364), 1, + STATE(1383), 1, sym_parametrized_type, - STATE(1462), 1, + STATE(1497), 1, sym_scoped_any_type, - STATE(2168), 1, + STATE(2307), 1, aux_sym_reference_expression_repeat1, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -106617,2042 +107819,1462 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - ACTIONS(4006), 2, + ACTIONS(4049), 2, anon_sym_TILDE, anon_sym_AT, - [99521] = 10, + [98763] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(3990), 1, + ACTIONS(2566), 1, sym_name_identifier, - ACTIONS(4012), 1, + ACTIONS(4109), 1, anon_sym_LPAREN, - ACTIONS(4060), 1, + STATE(1744), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2281), 1, + aux_sym_name_expression_repeat2, + STATE(2533), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2782), 2, + anon_sym_TILDE, + anon_sym_AT, + [98800] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2664), 1, + sym_name_identifier, + ACTIONS(4111), 1, + anon_sym_LPAREN, + STATE(686), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2306), 1, + aux_sym_name_expression_repeat2, + STATE(2547), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(351), 2, + anon_sym_TILDE, + anon_sym_AT, + [98837] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2800), 1, + sym_name_identifier, + ACTIONS(4113), 1, + anon_sym_LPAREN, + STATE(740), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2309), 1, + aux_sym_name_expression_repeat2, + STATE(2489), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(441), 2, + anon_sym_TILDE, + anon_sym_AT, + [98874] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2115), 1, + sym_name_identifier, + ACTIONS(4115), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2313), 1, + aux_sym_name_expression_repeat2, + STATE(2511), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2113), 2, + anon_sym_TILDE, + anon_sym_AT, + [98911] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2850), 1, + sym_name_identifier, + ACTIONS(4117), 1, + anon_sym_LPAREN, + STATE(849), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2315), 1, + aux_sym_name_expression_repeat2, + STATE(2528), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(963), 2, + anon_sym_TILDE, + anon_sym_AT, + [98948] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3467), 1, + sym_name_identifier, + ACTIONS(4119), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2319), 1, + aux_sym_name_expression_repeat2, + STATE(2545), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3465), 2, + anon_sym_TILDE, + anon_sym_AT, + [98985] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2844), 1, + sym_name_identifier, + ACTIONS(4121), 1, + anon_sym_LPAREN, + STATE(921), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2312), 1, + aux_sym_name_expression_repeat2, + STATE(2467), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1457), 2, + anon_sym_TILDE, + anon_sym_AT, + [99022] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2391), 1, + sym_name_identifier, + ACTIONS(4123), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2253), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2389), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(4125), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [99059] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2686), 1, + sym_name_identifier, + ACTIONS(4127), 1, + anon_sym_LPAREN, + STATE(720), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2322), 1, + aux_sym_name_expression_repeat2, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(459), 2, + anon_sym_TILDE, + anon_sym_AT, + [99096] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3436), 1, + sym_name_identifier, + ACTIONS(4129), 1, + anon_sym_LPAREN, + STATE(554), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2241), 1, + aux_sym_name_expression_repeat2, + STATE(2482), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3434), 2, + anon_sym_TILDE, + anon_sym_AT, + [99133] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4131), 1, anon_sym_DASH_GT, - STATE(2346), 1, + STATE(2534), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, - STATE(2077), 2, + STATE(2119), 2, sym_extended_name, aux_sym_function_definition_repeat1, - STATE(2308), 2, + STATE(2428), 2, sym_annotated_abstract_type, aux_sym_function_declaration_repeat1, - [99556] = 11, + [99168] = 10, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3193), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1364), 1, - sym_parametrized_type, - STATE(1537), 1, - sym_function_type, - STATE(2061), 1, - aux_sym_function_type_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2665), 1, - sym_scoped_any_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, + ACTIONS(3503), 1, sym_abstract_type_identifier, - [99592] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - ACTIONS(4064), 1, - anon_sym_RPAREN, - ACTIONS(4066), 1, - sym_typeclass_identifier, - STATE(2249), 1, - aux_sym_name_expression_repeat1, - STATE(2285), 1, - sym_typeclass_expression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(2054), 2, - sym_typeclass_usage, - aux_sym_annotated_abstract_type_repeat1, - [99626] = 11, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4066), 1, - sym_typeclass_identifier, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2060), 1, - sym_typeclass_expression, - STATE(2256), 1, - aux_sym_name_expression_repeat1, - STATE(2491), 1, - sym_parametrized_type, - STATE(2689), 1, - sym_type_subexpression, - STATE(2842), 1, - sym_parametrized_typeclass, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [99662] = 11, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3193), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1364), 1, - sym_parametrized_type, - STATE(1539), 1, - sym_function_type, - STATE(2061), 1, - aux_sym_function_type_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2665), 1, - sym_scoped_any_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [99698] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - ACTIONS(4066), 1, - sym_typeclass_identifier, - ACTIONS(4070), 1, - anon_sym_RPAREN, - STATE(2249), 1, - aux_sym_name_expression_repeat1, - STATE(2285), 1, - sym_typeclass_expression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(2055), 2, - sym_typeclass_usage, - aux_sym_annotated_abstract_type_repeat1, - [99732] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4072), 1, - anon_sym_LPAREN, - ACTIONS(4075), 1, - anon_sym_RPAREN, - ACTIONS(4077), 1, - sym_typeclass_identifier, - STATE(2249), 1, - aux_sym_name_expression_repeat1, - STATE(2285), 1, - sym_typeclass_expression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4080), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(2055), 2, - sym_typeclass_usage, - aux_sym_annotated_abstract_type_repeat1, - [99766] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - ACTIONS(4066), 1, - sym_typeclass_identifier, - ACTIONS(4083), 1, - anon_sym_RPAREN, - STATE(2249), 1, - aux_sym_name_expression_repeat1, - STATE(2285), 1, - sym_typeclass_expression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(2055), 2, - sym_typeclass_usage, - aux_sym_annotated_abstract_type_repeat1, - [99800] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(4085), 1, - anon_sym_RPAREN, - STATE(217), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(210), 2, - sym_type_parameter, - aux_sym_parametrized_type_repeat1, - [99831] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4087), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1364), 1, - sym_parametrized_type, - STATE(2058), 1, - aux_sym_function_type_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2665), 1, - sym_scoped_any_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4090), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [99864] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4095), 1, - anon_sym_LPAREN, - ACTIONS(4101), 1, + ACTIONS(4023), 1, sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4093), 2, - anon_sym_EQ, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4133), 1, anon_sym_DASH_GT, - ACTIONS(4098), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [99893] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(293), 1, - anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_RPAREN, - STATE(217), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(2057), 2, - sym_type_parameter, - aux_sym_parametrized_type_repeat1, - [99924] = 10, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3193), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1364), 1, - sym_parametrized_type, - STATE(1397), 1, - sym_scoped_any_type, - STATE(2058), 1, - aux_sym_function_type_repeat1, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [99957] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4062), 1, - anon_sym_LPAREN, - ACTIONS(4066), 1, - sym_typeclass_identifier, - STATE(2249), 1, - aux_sym_name_expression_repeat1, - STATE(2285), 1, - sym_typeclass_expression, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - STATE(2056), 2, - sym_typeclass_usage, - aux_sym_annotated_abstract_type_repeat1, - [99988] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4106), 1, - anon_sym_DASH_GT, - STATE(2346), 1, + STATE(2534), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100016] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4108), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100044] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4110), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2127), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100072] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4112), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100100] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4114), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100128] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4116), 1, - anon_sym_EQ, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100156] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4118), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, STATE(2138), 2, sym_extended_name, aux_sym_function_definition_repeat1, - [100184] = 6, + STATE(2434), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [99203] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3152), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1372), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1484), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3154), 3, - sym_typeclass_identifier, + ACTIONS(2716), 1, sym_name_identifier, - sym_type_identifier, - [100208] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, + ACTIONS(4135), 1, anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4120), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, + STATE(770), 1, sym_extended_name, - aux_sym_function_definition_repeat1, - [100236] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4122), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100264] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4124), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2067), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100292] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4126), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2080), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100320] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4128), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100348] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4130), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2072), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100376] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4132), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100404] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4134), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100432] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4136), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100460] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4138), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100488] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4140), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100516] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4142), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2084), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100544] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4144), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100572] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4146), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100600] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4148), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2091), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100628] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4150), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2095), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100656] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3976), 1, - sym_name_identifier, - ACTIONS(4152), 1, - anon_sym_LPAREN, - STATE(2166), 1, - sym_extended_name, - STATE(2189), 1, - sym_annotated_name, - STATE(2279), 1, - sym_scoped_any_name, - STATE(2352), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3974), 2, - anon_sym_TILDE, - anon_sym_AT, - [100686] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4154), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100714] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4156), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2097), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100742] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3976), 1, - sym_name_identifier, - ACTIONS(4152), 1, - anon_sym_LPAREN, - STATE(2166), 1, - sym_extended_name, - STATE(2189), 1, - sym_annotated_name, - STATE(2315), 1, - sym_scoped_any_name, - STATE(2352), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3974), 2, - anon_sym_TILDE, - anon_sym_AT, - [100772] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4158), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100800] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1367), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1415), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3130), 3, - sym_typeclass_identifier, - sym_name_identifier, - sym_type_identifier, - [100824] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4160), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100852] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4162), 1, - anon_sym_EQ, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100880] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4164), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100908] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4166), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100936] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4168), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [100964] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4172), 1, - sym_number_literal, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4170), 7, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_AT, - sym_name_identifier, - sym_float_number_literal, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [100984] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4174), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2115), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101012] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4176), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101040] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4178), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101068] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4180), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101096] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4182), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101124] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4184), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2105), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101152] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4186), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101180] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4188), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101208] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4190), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2109), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101236] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4192), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101264] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4194), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101292] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3193), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1364), 1, - sym_parametrized_type, - STATE(2232), 1, - sym_scoped_any_type, - STATE(2314), 1, + STATE(2032), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(2305), 1, + aux_sym_name_expression_repeat2, + STATE(2492), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(63), 2, + ACTIONS(185), 2, sym_type_identifier, sym_abstract_type_identifier, - [101322] = 6, + ACTIONS(1055), 2, + anon_sym_TILDE, + anon_sym_AT, + [99240] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3128), 1, + ACTIONS(2856), 1, + sym_name_identifier, + ACTIONS(4137), 1, anon_sym_LPAREN, + STATE(780), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2301), 1, + aux_sym_name_expression_repeat2, + STATE(2540), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - STATE(1365), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1415), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3130), 3, - sym_typeclass_identifier, - sym_name_identifier, + ACTIONS(185), 2, sym_type_identifier, - [101346] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4196), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, + sym_abstract_type_identifier, + ACTIONS(475), 2, anon_sym_TILDE, anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101374] = 8, + [99277] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, + ACTIONS(2391), 1, sym_name_identifier, - ACTIONS(4198), 1, - anon_sym_DASH_GT, - STATE(2346), 1, + ACTIONS(4123), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2253), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2093), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101402] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4200), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2106), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101430] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4202), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101458] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4204), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101486] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4206), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101514] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4208), 1, - anon_sym_LPAREN, - STATE(2166), 1, - sym_extended_name, - STATE(2189), 1, - sym_annotated_name, - STATE(2279), 1, - sym_scoped_any_name, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [101544] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4210), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2108), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101572] = 9, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4208), 1, - anon_sym_LPAREN, - STATE(2166), 1, - sym_extended_name, - STATE(2189), 1, - sym_annotated_name, - STATE(2315), 1, - sym_scoped_any_name, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [101602] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4212), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2125), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101630] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4214), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2101), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101658] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4216), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101686] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4218), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101714] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4220), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101742] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4222), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101770] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4224), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101798] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4226), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101826] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4228), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101854] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4230), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2112), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101882] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4232), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2100), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101910] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4234), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2134), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101938] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4236), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101966] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4238), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [101994] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4240), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102022] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4242), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2128), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102050] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4244), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2124), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102078] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4246), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102106] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4248), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102134] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4250), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102162] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3152), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1369), 2, - sym_import_symbol, - aux_sym_import_statement_repeat1, - STATE(1484), 2, - sym__type_or_typeclass, - sym__name_or_operator, - ACTIONS(3154), 3, - sym_typeclass_identifier, - sym_name_identifier, + ACTIONS(185), 2, sym_type_identifier, - [102186] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - ACTIONS(4252), 1, - anon_sym_DASH_GT, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, + sym_abstract_type_identifier, + ACTIONS(2389), 2, anon_sym_TILDE, anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102214] = 8, + [99314] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, + ACTIONS(2808), 1, sym_name_identifier, - ACTIONS(4254), 1, - anon_sym_DASH_GT, - STATE(2346), 1, + ACTIONS(4139), 1, + anon_sym_LPAREN, + STATE(800), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2295), 1, + aux_sym_name_expression_repeat2, + STATE(2484), 1, aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1095), 2, anon_sym_TILDE, anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102242] = 8, + [99351] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, + ACTIONS(2141), 1, sym_name_identifier, - ACTIONS(4256), 1, - anon_sym_DASH_GT, - STATE(2346), 1, + ACTIONS(4141), 1, + anon_sym_LPAREN, + STATE(1586), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2324), 1, + aux_sym_name_expression_repeat2, + STATE(2516), 1, aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2139), 2, anon_sym_TILDE, anon_sym_AT, - STATE(2059), 2, - sym_extended_name, - aux_sym_function_definition_repeat1, - [102270] = 8, + [99388] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, + ACTIONS(2558), 1, sym_name_identifier, - ACTIONS(4258), 1, + ACTIONS(4143), 1, + anon_sym_LPAREN, + STATE(949), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2291), 1, + aux_sym_name_expression_repeat2, + STATE(2479), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1309), 2, + anon_sym_TILDE, + anon_sym_AT, + [99425] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2249), 1, + sym_name_identifier, + ACTIONS(4145), 1, + anon_sym_LPAREN, + STATE(1575), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2285), 1, + aux_sym_name_expression_repeat2, + STATE(2490), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2247), 2, + anon_sym_TILDE, + anon_sym_AT, + [99462] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(4147), 1, + anon_sym_LPAREN, + STATE(1658), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2280), 1, + aux_sym_name_expression_repeat2, + STATE(2522), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_AT, + [99499] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3418), 1, + sym_name_identifier, + ACTIONS(4149), 1, + anon_sym_LPAREN, + STATE(625), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2277), 1, + aux_sym_name_expression_repeat2, + STATE(2551), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3416), 2, + anon_sym_TILDE, + anon_sym_AT, + [99536] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2802), 1, + sym_name_identifier, + ACTIONS(4151), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2284), 1, + aux_sym_name_expression_repeat2, + STATE(2517), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(761), 2, + anon_sym_TILDE, + anon_sym_AT, + [99573] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3390), 1, + sym_name_identifier, + ACTIONS(4153), 1, + anon_sym_LPAREN, + STATE(637), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2272), 1, + aux_sym_name_expression_repeat2, + STATE(2471), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3388), 2, + anon_sym_TILDE, + anon_sym_AT, + [99610] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2598), 1, + sym_name_identifier, + ACTIONS(4155), 1, + anon_sym_LPAREN, + STATE(1825), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2235), 1, + aux_sym_name_expression_repeat2, + STATE(2495), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2988), 2, + anon_sym_TILDE, + anon_sym_AT, + [99647] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3400), 1, + sym_name_identifier, + ACTIONS(4157), 1, + anon_sym_LPAREN, + STATE(690), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2214), 1, + aux_sym_name_expression_repeat2, + STATE(2510), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3398), 2, + anon_sym_TILDE, + anon_sym_AT, + [99684] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4159), 1, anon_sym_DASH_GT, - STATE(2346), 1, + STATE(2534), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2120), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2437), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [99719] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2680), 1, + sym_name_identifier, + ACTIONS(4161), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2266), 1, + aux_sym_name_expression_repeat2, + STATE(2477), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1441), 2, + anon_sym_TILDE, + anon_sym_AT, + [99756] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4163), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2121), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2436), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [99791] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4165), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, STATE(2102), 2, sym_extended_name, aux_sym_function_definition_repeat1, - [102298] = 8, + STATE(2454), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [99826] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, + ACTIONS(2608), 1, sym_name_identifier, - ACTIONS(4260), 1, + ACTIONS(4167), 1, + anon_sym_LPAREN, + STATE(1069), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2267), 1, + aux_sym_name_expression_repeat2, + STATE(2527), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1685), 2, + anon_sym_TILDE, + anon_sym_AT, + [99863] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4169), 1, anon_sym_DASH_GT, - STATE(2346), 1, + STATE(2534), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, - STATE(2075), 2, + STATE(2038), 2, sym_extended_name, aux_sym_function_definition_repeat1, - [102326] = 8, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3238), 1, - sym_operator, - ACTIONS(4262), 1, - anon_sym_AMP, - ACTIONS(4264), 1, - anon_sym_PIPE, - STATE(2271), 1, - aux_sym_tuple_name_repeat1, - STATE(2274), 1, - aux_sym_variant_name_repeat1, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - STATE(2856), 2, - sym_tuple_name, - sym_variant_name, - [102353] = 8, + STATE(2442), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [99898] = 11, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4068), 1, + ACTIONS(2465), 1, + sym_name_identifier, + ACTIONS(4171), 1, anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1491), 1, - sym_parametrized_type, - STATE(2314), 1, + STATE(1049), 1, + sym_extended_name, + STATE(2032), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(2259), 1, + aux_sym_name_expression_repeat2, + STATE(2472), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1621), 2, + anon_sym_TILDE, + anon_sym_AT, + [99935] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4173), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2048), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2414), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [99970] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4175), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2065), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2426), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100005] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4177), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2073), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2460), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100040] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(4179), 1, + anon_sym_LPAREN, + STATE(1570), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2220), 1, + aux_sym_name_expression_repeat2, + STATE(2476), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2229), 2, + anon_sym_TILDE, + anon_sym_AT, + [100077] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4181), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2080), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2413), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100112] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2604), 1, + sym_name_identifier, + ACTIONS(4183), 1, + anon_sym_LPAREN, + STATE(809), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2222), 1, + aux_sym_name_expression_repeat2, + STATE(2538), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(723), 2, + anon_sym_TILDE, + anon_sym_AT, + [100149] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2656), 1, + sym_name_identifier, + ACTIONS(4185), 1, + anon_sym_LPAREN, + STATE(1786), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2239), 1, + aux_sym_name_expression_repeat2, + STATE(2541), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3026), 2, + anon_sym_TILDE, + anon_sym_AT, + [100186] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2457), 1, + sym_name_identifier, + ACTIONS(4187), 1, + anon_sym_LPAREN, + STATE(1270), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2225), 1, + aux_sym_name_expression_repeat2, + STATE(2496), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1857), 2, + anon_sym_TILDE, + anon_sym_AT, + [100223] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4189), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2117), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2421), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100258] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2720), 1, + sym_name_identifier, + ACTIONS(4191), 1, + anon_sym_LPAREN, + STATE(719), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2255), 1, + aux_sym_name_expression_repeat2, + STATE(2498), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(373), 2, + anon_sym_TILDE, + anon_sym_AT, + [100295] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4193), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2085), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2438), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100330] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4195), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2105), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2425), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100365] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2754), 1, + sym_name_identifier, + ACTIONS(4197), 1, + anon_sym_LPAREN, + STATE(1794), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2245), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(3044), 2, + anon_sym_TILDE, + anon_sym_AT, + [100402] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4199), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2165), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2432), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100437] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4201), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2112), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2423), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100472] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2487), 1, + sym_name_identifier, + ACTIONS(4203), 1, + anon_sym_LPAREN, + STATE(1737), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2188), 1, + aux_sym_name_expression_repeat2, + STATE(2486), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2906), 2, + anon_sym_TILDE, + anon_sym_AT, + [100509] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4205), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2043), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2433), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100544] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2596), 1, + sym_name_identifier, + ACTIONS(4207), 1, + anon_sym_LPAREN, + STATE(1126), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2226), 1, + aux_sym_name_expression_repeat2, + STATE(2544), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1543), 2, + anon_sym_TILDE, + anon_sym_AT, + [100581] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4059), 1, + anon_sym_LPAREN, + ACTIONS(4209), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2153), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + STATE(2440), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [100616] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2722), 1, + sym_name_identifier, + ACTIONS(4211), 1, + anon_sym_LPAREN, + STATE(884), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2240), 1, + aux_sym_name_expression_repeat2, + STATE(2532), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1231), 2, + anon_sym_TILDE, + anon_sym_AT, + [100653] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2718), 1, + sym_name_identifier, + ACTIONS(4213), 1, + anon_sym_LPAREN, + STATE(1203), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2234), 1, + aux_sym_name_expression_repeat2, + STATE(2504), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(1583), 2, + anon_sym_TILDE, + anon_sym_AT, + [100690] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2455), 1, + sym_name_identifier, + ACTIONS(4215), 1, + anon_sym_LPAREN, + STATE(1731), 1, + sym_extended_name, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(2192), 1, + aux_sym_name_expression_repeat2, + STATE(2491), 1, + aux_sym_reference_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(2742), 2, + anon_sym_TILDE, + anon_sym_AT, + [100727] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4217), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + anon_sym_RPAREN, + ACTIONS(4222), 1, + sym_typeclass_identifier, + STATE(2407), 1, + aux_sym_name_expression_repeat1, + STATE(2417), 1, + sym_typeclass_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4225), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(2022), 2, + sym_typeclass_usage, + aux_sym_annotated_abstract_type_repeat1, + [100761] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4230), 1, + anon_sym_RPAREN, + ACTIONS(4232), 1, + sym_typeclass_identifier, + STATE(2407), 1, + aux_sym_name_expression_repeat1, + STATE(2417), 1, + sym_typeclass_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(2022), 2, + sym_typeclass_usage, + aux_sym_annotated_abstract_type_repeat1, + [100795] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3538), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1383), 1, + sym_parametrized_type, + STATE(1589), 1, + sym_function_type, + STATE(2033), 1, + aux_sym_function_type_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3031), 1, + sym_scoped_any_type, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -108660,409 +109282,3502 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - [102380] = 9, + [100831] = 10, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3187), 1, - anon_sym_AMP, - ACTIONS(3197), 1, - anon_sym_DOT, - ACTIONS(4266), 1, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4232), 1, + sym_typeclass_identifier, + ACTIONS(4234), 1, + anon_sym_RPAREN, + STATE(2407), 1, + aux_sym_name_expression_repeat1, + STATE(2417), 1, + sym_typeclass_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, sym_type_identifier, - STATE(1375), 1, - sym_constructor, + sym_abstract_type_identifier, + STATE(2027), 2, + sym_typeclass_usage, + aux_sym_annotated_abstract_type_repeat1, + [100865] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3538), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, STATE(1383), 1, + sym_parametrized_type, + STATE(1602), 1, + sym_function_type, + STATE(2033), 1, + aux_sym_function_type_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3031), 1, + sym_scoped_any_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [100901] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4232), 1, + sym_typeclass_identifier, + ACTIONS(4236), 1, + anon_sym_RPAREN, + STATE(2407), 1, + aux_sym_name_expression_repeat1, + STATE(2417), 1, + sym_typeclass_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(2022), 2, + sym_typeclass_usage, + aux_sym_annotated_abstract_type_repeat1, + [100935] = 11, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4232), 1, + sym_typeclass_identifier, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2035), 1, + sym_typeclass_expression, + STATE(2395), 1, + aux_sym_name_expression_repeat1, + STATE(2962), 1, + sym_parametrized_typeclass, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [100971] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4242), 1, + anon_sym_LPAREN, + ACTIONS(4248), 1, + sym_name_identifier, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4240), 2, + anon_sym_EQ, + anon_sym_DASH_GT, + ACTIONS(4245), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101000] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(4251), 1, + anon_sym_RPAREN, + STATE(175), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(169), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + [101031] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4228), 1, + anon_sym_LPAREN, + ACTIONS(4232), 1, + sym_typeclass_identifier, + STATE(2407), 1, + aux_sym_name_expression_repeat1, + STATE(2417), 1, + sym_typeclass_expression, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(2023), 2, + sym_typeclass_usage, + aux_sym_annotated_abstract_type_repeat1, + [101062] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4253), 1, + anon_sym_LPAREN, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4258), 2, + sym_type_identifier, + sym_abstract_type_identifier, + ACTIONS(4256), 4, + anon_sym_TILDE, + anon_sym_AT, + sym_typeclass_identifier, + sym_name_identifier, + [101089] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3538), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1383), 1, + sym_parametrized_type, + STATE(1476), 1, + sym_scoped_any_type, + STATE(2034), 1, + aux_sym_function_type_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101122] = 10, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4261), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1383), 1, + sym_parametrized_type, + STATE(2034), 1, + aux_sym_function_type_repeat1, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3031), 1, + sym_scoped_any_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4264), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101155] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(283), 1, + anon_sym_LPAREN, + ACTIONS(4267), 1, + anon_sym_RPAREN, + STATE(175), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + STATE(2030), 2, + sym_type_parameter, + aux_sym_parametrized_type_repeat1, + [101186] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1379), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1484), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3295), 3, + sym_typeclass_identifier, + sym_name_identifier, + sym_type_identifier, + [101210] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4269), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2056), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101238] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4271), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101266] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4273), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101294] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4275), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101324] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4277), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2039), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101352] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4279), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101382] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4281), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101410] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4283), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101440] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3424), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1431), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1528), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3426), 3, + sym_typeclass_identifier, + sym_name_identifier, + sym_type_identifier, + [101464] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4285), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101492] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4287), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101520] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4289), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101548] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3519), 1, + anon_sym_AMP, + ACTIONS(3571), 1, + anon_sym_DOT, + STATE(1458), 1, + sym_constructor, + STATE(1459), 1, aux_sym_tuple_type_repeat1, - STATE(1480), 1, + STATE(1540), 1, sym_tuple_type, - STATE(2449), 1, + STATE(2502), 1, aux_sym_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [102409] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2302), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, + ACTIONS(4291), 2, sym_type_identifier, sym_abstract_type_identifier, - [102436] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1378), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102463] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1549), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102490] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1453), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102517] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2233), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102544] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1467), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102571] = 8, + [101578] = 9, ACTIONS(3), 1, sym__line_comment, - ACTIONS(4262), 1, - anon_sym_AMP, - ACTIONS(4264), 1, - anon_sym_PIPE, - ACTIONS(4268), 1, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4293), 1, sym_operator, - STATE(2271), 1, - aux_sym_tuple_name_repeat1, - STATE(2274), 1, - aux_sym_variant_name_repeat1, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - STATE(2856), 2, - sym_tuple_name, - sym_variant_name, - [102598] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1481), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101608] = 9, + ACTIONS(3), 1, sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4295), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, sym__block_comment, ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - [102625] = 8, + [101638] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1446), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102652] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1582), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102679] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1485), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102706] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, + ACTIONS(4023), 1, sym_name_identifier, - STATE(2346), 1, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4297), 1, + anon_sym_DASH_GT, + STATE(2534), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3988), 2, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2054), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101666] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4299), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101694] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4301), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101722] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4303), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101752] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4305), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101780] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4307), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101808] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4309), 1, + anon_sym_EQ, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101836] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4311), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101864] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4313), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2057), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [101892] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4315), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101922] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4317), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101952] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4319), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [101982] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3424), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1430), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1528), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3426), 3, + sym_typeclass_identifier, + sym_name_identifier, + sym_type_identifier, + [102006] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4321), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102034] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4323), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102064] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4325), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102094] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4327), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102122] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4329), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, STATE(2068), 2, sym_extended_name, aux_sym_function_definition_repeat1, - [102731] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1414), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, + [102150] = 9, + ACTIONS(3), 1, sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4331), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, sym__block_comment, ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - [102758] = 8, + [102180] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4068), 1, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1565), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102785] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2312), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102812] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1659), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102839] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4270), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4272), 6, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [102858] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2393), 1, - sym_parametrized_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [102885] = 5, - ACTIONS(5), 1, - sym__doc_comment, - STATE(2168), 1, + ACTIONS(4333), 1, + anon_sym_DASH_GT, + STATE(2534), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4276), 2, + ACTIONS(4033), 2, anon_sym_TILDE, anon_sym_AT, - ACTIONS(4274), 4, - anon_sym_LPAREN, - sym_name_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - [102906] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - STATE(2094), 2, + STATE(2173), 2, sym_extended_name, aux_sym_function_definition_repeat1, - [102931] = 8, + [102208] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4335), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102238] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4068), 1, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, anon_sym_LPAREN, - STATE(209), 1, + ACTIONS(4337), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102266] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4339), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2075), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102294] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4341), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102322] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4343), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102352] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4345), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102382] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4347), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102412] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4349), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102440] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4351), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102468] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4353), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102498] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102528] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4357), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102558] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4359), 1, + anon_sym_LPAREN, + STATE(2294), 1, + sym_extended_name, + STATE(2403), 1, + sym_annotated_name, + STATE(2430), 1, + sym_scoped_any_name, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [102588] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4361), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102616] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4359), 1, + anon_sym_LPAREN, + STATE(2294), 1, + sym_extended_name, + STATE(2403), 1, + sym_annotated_name, + STATE(2429), 1, + sym_scoped_any_name, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [102646] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4363), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102676] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4365), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102706] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4367), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2091), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102734] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4369), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102764] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4371), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102792] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4373), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102820] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4375), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102850] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4377), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102880] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4379), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102908] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4381), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [102938] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4383), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2095), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102966] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4385), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [102994] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4387), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103024] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4389), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103054] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4391), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103084] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4393), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103112] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4395), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2059), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103140] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4397), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2053), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103168] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4399), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103196] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4401), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103226] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4403), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103256] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4405), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2155), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103284] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4407), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2098), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103312] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4409), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2046), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103340] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4411), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103370] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103398] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4415), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103428] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4009), 1, + sym_name_identifier, + ACTIONS(4417), 1, + anon_sym_LPAREN, + STATE(2294), 1, + sym_extended_name, + STATE(2403), 1, + sym_annotated_name, + STATE(2430), 1, + sym_scoped_any_name, + STATE(2481), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4007), 2, + anon_sym_TILDE, + anon_sym_AT, + [103458] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4419), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103488] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4421), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103518] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4423), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103546] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4425), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103576] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103604] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4429), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103632] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4431), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103660] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1382), 2, + sym_import_symbol, + aux_sym_import_statement_repeat1, + STATE(1484), 2, + sym__type_or_typeclass, + sym__name_or_operator, + ACTIONS(3295), 3, + sym_typeclass_identifier, + sym_name_identifier, + sym_type_identifier, + [103684] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103714] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103744] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4437), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2130), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103772] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4439), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103802] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4441), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103832] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4443), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103862] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2170), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103890] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4447), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [103918] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103948] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4451), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [103978] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4453), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104008] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4009), 1, + sym_name_identifier, + ACTIONS(4417), 1, + anon_sym_LPAREN, + STATE(2294), 1, + sym_extended_name, + STATE(2403), 1, + sym_annotated_name, + STATE(2429), 1, + sym_scoped_any_name, + STATE(2481), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4007), 2, + anon_sym_TILDE, + anon_sym_AT, + [104038] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4455), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2139), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104066] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4457), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104096] = 9, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3538), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1383), 1, + sym_parametrized_type, + STATE(2394), 1, + sym_scoped_any_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104126] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4459), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104154] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4461), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104182] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4463), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2145), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104210] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104240] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4467), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104270] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4469), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2174), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104298] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4471), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2146), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104326] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4473), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104354] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4475), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104382] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4477), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104412] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4479), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104440] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4481), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2148), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104468] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4483), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104496] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4485), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2150), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104524] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4487), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104554] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4489), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104582] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4491), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104610] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4493), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104638] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4495), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104666] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4497), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104694] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4499), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104722] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4501), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104752] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4503), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104782] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2164), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104810] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4507), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2157), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104838] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4509), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104868] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4511), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104896] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4513), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [104924] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4515), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104954] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4517), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [104984] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4519), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105014] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4521), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105044] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4523), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [105072] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4525), 1, + anon_sym_EQ, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [105100] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4527), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [105128] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4529), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [105156] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + ACTIONS(4531), 1, + anon_sym_DASH_GT, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2029), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [105184] = 9, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4533), 1, + sym_operator, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105214] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2716), 1, + sym_name_identifier, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(770), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2492), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1055), 2, + anon_sym_TILDE, + anon_sym_AT, + [105241] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2058), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [105266] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + sym_name_identifier, + ACTIONS(4537), 1, + anon_sym_LPAREN, + STATE(1297), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2521), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1895), 2, + anon_sym_TILDE, + anon_sym_AT, + [105293] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1590), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105320] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1538), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105347] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3378), 1, + sym_name_identifier, + ACTIONS(4539), 1, + anon_sym_LPAREN, + STATE(586), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2515), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3376), 2, + anon_sym_TILDE, + anon_sym_AT, + [105374] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2468), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105401] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2487), 1, + sym_name_identifier, + ACTIONS(4541), 1, + anon_sym_LPAREN, + STATE(1737), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2486), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2906), 2, + anon_sym_TILDE, + anon_sym_AT, + [105428] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2431), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105455] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1606), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105482] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1523), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105509] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1468), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105536] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2487), 1, + sym_name_identifier, + ACTIONS(4541), 1, + anon_sym_LPAREN, + STATE(1730), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2486), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2906), 2, + anon_sym_TILDE, + anon_sym_AT, + [105563] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3436), 1, + sym_name_identifier, + ACTIONS(4543), 1, + anon_sym_LPAREN, + STATE(554), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2482), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3434), 2, + anon_sym_TILDE, + anon_sym_AT, + [105590] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1524), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105617] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1474), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105644] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2455), 1, + sym_name_identifier, + ACTIONS(4545), 1, + anon_sym_LPAREN, + STATE(1762), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2491), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2742), 2, + anon_sym_TILDE, + anon_sym_AT, + [105671] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1512), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105698] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2479), 1, + sym_name_identifier, + ACTIONS(4547), 1, + anon_sym_LPAREN, + STATE(1705), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2493), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2888), 2, + anon_sym_TILDE, + anon_sym_AT, + [105725] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2354), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105752] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, sym_type_expression, STATE(1479), 1, sym_parametrized_type, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -109070,18 +112785,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - [102958] = 8, + [105779] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4068), 1, + ACTIONS(4238), 1, anon_sym_LPAREN, - STATE(209), 1, + STATE(167), 1, sym_type_expression, - STATE(1551), 1, + STATE(1464), 1, sym_parametrized_type, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -109089,18 +112804,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - [102985] = 8, + [105806] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4068), 1, + ACTIONS(4238), 1, anon_sym_LPAREN, - STATE(209), 1, + STATE(167), 1, sym_type_expression, - STATE(2314), 1, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2437), 1, + STATE(2441), 1, sym_parametrized_type, - STATE(2689), 1, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, @@ -109108,6279 +112823,7228 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - [103012] = 8, + [105833] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2272), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103039] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2336), 1, - sym_parametrized_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103066] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2491), 1, - sym_parametrized_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103093] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1489), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103120] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - STATE(2809), 1, - sym_parametrized_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103147] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1604), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103174] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2438), 1, - sym_parametrized_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103201] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2446), 1, - sym_parametrized_type, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103228] = 4, - ACTIONS(5), 1, - sym__doc_comment, - STATE(2773), 1, - sym_partition_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4279), 6, - anon_sym_TEST, - anon_sym_INTERFACE, - anon_sym_CORE, - anon_sym_LIB, - anon_sym_MODULE, - anon_sym_EXE, - [103247] = 8, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(209), 1, - sym_type_expression, - STATE(1529), 1, - sym_parametrized_type, - STATE(2314), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(63), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [103274] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4281), 1, - anon_sym_LPAREN, - ACTIONS(4283), 1, + ACTIONS(2479), 1, sym_name_identifier, - STATE(662), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103298] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4285), 1, + ACTIONS(4547), 1, anon_sym_LPAREN, - ACTIONS(4287), 1, - sym_name_identifier, - STATE(656), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103322] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4291), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103346] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2484), 1, + STATE(1697), 1, sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [103370] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4281), 1, - anon_sym_LPAREN, - ACTIONS(4293), 1, - sym_name_identifier, - STATE(662), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103394] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4295), 1, - anon_sym_LPAREN, - ACTIONS(4297), 1, - sym_name_identifier, - STATE(638), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103418] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4299), 6, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [103434] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2483), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [103458] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4303), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103482] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2470), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [103506] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4305), 6, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [103522] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4307), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103546] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4309), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103570] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2455), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [103594] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4313), 1, - sym_name_identifier, - STATE(648), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103618] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4315), 1, - anon_sym_LPAREN, - ACTIONS(4317), 1, - sym_name_identifier, - STATE(634), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103642] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4295), 1, - anon_sym_LPAREN, - ACTIONS(4319), 1, - sym_name_identifier, - STATE(638), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103666] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4321), 1, - anon_sym_LPAREN, - ACTIONS(4323), 1, - sym_name_identifier, - STATE(621), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103690] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2472), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [103714] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4281), 1, - anon_sym_LPAREN, - ACTIONS(4325), 1, - sym_name_identifier, - STATE(662), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103738] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4327), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103762] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4315), 1, - anon_sym_LPAREN, - ACTIONS(4329), 1, - sym_name_identifier, - STATE(634), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103786] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4331), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103810] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2454), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [103834] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4333), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103858] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2466), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [103882] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4335), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103906] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4337), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103930] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4339), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103954] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4341), 1, - sym_name_identifier, - STATE(648), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [103978] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2478), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104002] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4321), 1, - anon_sym_LPAREN, - ACTIONS(4343), 1, - sym_name_identifier, - STATE(621), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104026] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2481), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104050] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4345), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104074] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4347), 1, - sym_name_identifier, - STATE(648), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104098] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4281), 1, - anon_sym_LPAREN, - ACTIONS(4349), 1, - sym_name_identifier, - STATE(662), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104122] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2475), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104146] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4351), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104170] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104194] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3222), 1, - anon_sym_RPAREN, - ACTIONS(4355), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 4, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [104214] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4315), 1, - anon_sym_LPAREN, - ACTIONS(4357), 1, - sym_name_identifier, - STATE(634), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104238] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4295), 1, - anon_sym_LPAREN, - ACTIONS(4359), 1, - sym_name_identifier, - STATE(638), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104262] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2474), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104286] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4315), 1, - anon_sym_LPAREN, - ACTIONS(4361), 1, - sym_name_identifier, - STATE(634), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104310] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2480), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104334] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4363), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104358] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4295), 1, - anon_sym_LPAREN, - ACTIONS(4365), 1, - sym_name_identifier, - STATE(638), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104382] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2473), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104406] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2464), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104430] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4367), 6, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [104446] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4369), 1, - anon_sym_AMP, - STATE(2239), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 4, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [104466] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2477), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104490] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4371), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104514] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4373), 1, - anon_sym_COLON, - ACTIONS(4375), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [104538] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4285), 1, - anon_sym_LPAREN, - ACTIONS(4377), 1, - sym_name_identifier, - STATE(656), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104562] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4379), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104586] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4369), 1, - anon_sym_AMP, - STATE(2243), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 4, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [104606] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2468), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104630] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2471), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104654] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4381), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104678] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4383), 1, - anon_sym_AMP, - STATE(2243), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 4, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [104698] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4386), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104722] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4321), 1, - anon_sym_LPAREN, - ACTIONS(4388), 1, - sym_name_identifier, - STATE(621), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104746] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4390), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104770] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2751), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104794] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2465), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104818] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - ACTIONS(4392), 1, - sym_typeclass_identifier, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(169), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [104842] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2476), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104866] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4285), 1, - anon_sym_LPAREN, - ACTIONS(4394), 1, - sym_name_identifier, - STATE(656), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104890] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4285), 1, - anon_sym_LPAREN, - ACTIONS(4396), 1, - sym_name_identifier, - STATE(656), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104914] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4311), 1, - anon_sym_LPAREN, - ACTIONS(4398), 1, - sym_name_identifier, - STATE(648), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104938] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2451), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [104962] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4400), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [104986] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - ACTIONS(4392), 1, - sym_typeclass_identifier, - STATE(1999), 1, - aux_sym_name_expression_repeat1, - STATE(2689), 1, - sym_type_subexpression, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3289), 2, - sym_type_identifier, - sym_abstract_type_identifier, - [105010] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4402), 1, - anon_sym_COLON, - ACTIONS(4404), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(2236), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105034] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4406), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [105058] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4321), 1, - anon_sym_LPAREN, - ACTIONS(4408), 1, - sym_name_identifier, - STATE(621), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [105082] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4410), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [105106] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4289), 1, - anon_sym_LPAREN, - ACTIONS(4412), 1, - sym_name_identifier, - STATE(597), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [105130] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2456), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [105154] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2452), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [105178] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4301), 1, - anon_sym_LPAREN, - ACTIONS(4414), 1, - sym_name_identifier, - STATE(611), 1, - sym_scoped_statement, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [105202] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2485), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [105226] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3984), 1, - anon_sym_LPAREN, - ACTIONS(3990), 1, - sym_name_identifier, - STATE(2346), 1, - aux_sym_reference_expression_repeat1, - STATE(2458), 1, - sym_extended_name, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3988), 2, - anon_sym_TILDE, - anon_sym_AT, - [105250] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4416), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105271] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4418), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105292] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4420), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105313] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1975), 1, - anon_sym_RPAREN, - ACTIONS(4422), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1977), 3, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_DASH_GT, - [105332] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3982), 1, - anon_sym_AMP, STATE(2288), 1, - aux_sym_tuple_name_repeat1, + aux_sym_name_expression_repeat2, + STATE(2493), 1, + aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4424), 3, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_RPAREN, - [105351] = 5, + ACTIONS(2888), 2, + anon_sym_TILDE, + anon_sym_AT, + [105860] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4426), 1, - anon_sym_AMP, - STATE(2282), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - [105370] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4428), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105391] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3986), 1, - anon_sym_PIPE, - STATE(2295), 1, - aux_sym_variant_name_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4430), 3, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_RPAREN, - [105410] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4432), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105431] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4434), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_typeclass_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - [105446] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4436), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105467] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4438), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(2287), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105488] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4440), 5, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_in, - [105503] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4442), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105524] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4444), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105545] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4426), 1, - anon_sym_AMP, - STATE(2284), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - [105564] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(4446), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3222), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [105583] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4448), 1, - anon_sym_AMP, - STATE(2284), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_DASH_GT, - [105602] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4451), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_typeclass_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - [105617] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(4453), 1, - anon_sym_inline, - ACTIONS(4455), 1, + ACTIONS(3372), 1, sym_name_identifier, - STATE(2257), 1, - sym__name_or_operator, + ACTIONS(4549), 1, + anon_sym_LPAREN, + STATE(611), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2546), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3370), 2, + anon_sym_TILDE, + anon_sym_AT, + [105887] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1518), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105914] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1482), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [105941] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3378), 1, + sym_name_identifier, + ACTIONS(4539), 1, + anon_sym_LPAREN, + STATE(583), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2515), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3376), 2, + anon_sym_TILDE, + anon_sym_AT, + [105968] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3372), 1, + sym_name_identifier, + ACTIONS(4549), 1, + anon_sym_LPAREN, + STATE(613), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2546), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3370), 2, + anon_sym_TILDE, + anon_sym_AT, + [105995] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2507), 1, + sym_name_identifier, + ACTIONS(4551), 1, + anon_sym_LPAREN, + STATE(1713), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2518), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2818), 2, + anon_sym_TILDE, + anon_sym_AT, + [106022] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1663), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [106049] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3400), 1, + sym_name_identifier, + ACTIONS(4553), 1, + anon_sym_LPAREN, + STATE(690), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2510), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3398), 2, + anon_sym_TILDE, + anon_sym_AT, + [106076] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1618), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [106103] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2592), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [106130] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2507), 1, + sym_name_identifier, + ACTIONS(4551), 1, + anon_sym_LPAREN, + STATE(1720), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2518), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2818), 2, + anon_sym_TILDE, + anon_sym_AT, + [106157] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2552), 1, + sym_name_identifier, + ACTIONS(4537), 1, + anon_sym_LPAREN, + STATE(1286), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, STATE(2521), 1, - sym_function_definition, + aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [105640] = 6, + ACTIONS(1895), 2, + anon_sym_TILDE, + anon_sym_AT, + [106184] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3175), 1, + ACTIONS(4238), 1, anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4457), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105661] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4459), 1, - anon_sym_AMP, - STATE(2288), 1, - aux_sym_tuple_name_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4440), 3, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_RPAREN, - [105680] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4462), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_typeclass_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - [105695] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4464), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105716] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4466), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105737] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4468), 1, - anon_sym_AMP, - STATE(2293), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [105756] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4470), 1, - anon_sym_AMP, - STATE(2293), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [105775] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4473), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105796] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4477), 1, - anon_sym_PIPE, - STATE(2295), 1, - aux_sym_variant_name_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4475), 3, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_RPAREN, - [105815] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4480), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105836] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4482), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105857] = 7, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(4455), 1, - sym_name_identifier, - ACTIONS(4484), 1, - anon_sym_inline, - STATE(2257), 1, - sym__name_or_operator, - STATE(2764), 1, - sym_function_definition, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [105880] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4486), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105901] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4488), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105922] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4490), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105943] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4492), 1, - anon_sym_AMP, - STATE(2307), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 3, - anon_sym_RPAREN, - anon_sym_elif, - anon_sym_else, - [105962] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4494), 5, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_typeclass_identifier, - sym_type_identifier, - sym_abstract_type_identifier, - [105977] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4496), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [105998] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4498), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [106019] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4500), 1, - anon_sym_AMP, - STATE(2306), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 3, - anon_sym_RPAREN, - anon_sym_elif, - anon_sym_else, - [106038] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4492), 1, - anon_sym_AMP, - STATE(2306), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 3, - anon_sym_RPAREN, - anon_sym_elif, - anon_sym_else, - [106057] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4503), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [106078] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4505), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [106099] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4507), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [106120] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4509), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [106141] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4468), 1, - anon_sym_AMP, - STATE(2292), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [106160] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3222), 1, - anon_sym_RPAREN, - ACTIONS(4511), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_DASH_GT, - [106179] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4068), 1, - anon_sym_LPAREN, - STATE(1999), 1, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, aux_sym_name_expression_repeat1, - STATE(2689), 1, + STATE(2558), 1, + sym_parametrized_type, + STATE(3048), 1, sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(3289), 2, + ACTIONS(63), 2, sym_type_identifier, sym_abstract_type_identifier, - [106200] = 3, + [106211] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4475), 5, - anon_sym_EQ, - anon_sym_LT_DASH, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_in, - [106215] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, + ACTIONS(4238), 1, anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4513), 1, - anon_sym_COLON, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2562), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [106236] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(4515), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3222), 3, - anon_sym_RPAREN, - anon_sym_elif, - anon_sym_else, - [106255] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, - anon_sym_LPAREN, - ACTIONS(3177), 1, - sym_abstract_type_identifier, - ACTIONS(4517), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1368), 2, - sym_annotated_abstract_type, - aux_sym_function_declaration_repeat1, - [106276] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4343), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106294] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4347), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106312] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4396), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106330] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4351), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106348] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3473), 1, - anon_sym_RPAREN, - ACTIONS(4519), 1, - anon_sym_elif, - ACTIONS(4521), 1, - anon_sym_else, - STATE(2383), 1, - aux_sym_condition_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [106368] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1975), 1, - anon_sym_RPAREN, - ACTIONS(4523), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1977), 2, - anon_sym_PIPE, - anon_sym_DASH_GT, - [106386] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4325), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106404] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4371), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106422] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4303), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106440] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4525), 1, - anon_sym_QMARK, - ACTIONS(4527), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3432), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [106458] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4353), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106476] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4357), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106494] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3466), 1, - anon_sym_RPAREN, - ACTIONS(4529), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(2331), 2, - sym_match_case, - aux_sym_match_repeat1, - [106512] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4381), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106530] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4333), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106548] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4410), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106566] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(4532), 1, - sym_name_identifier, - STATE(1523), 1, - sym_function_declaration, - STATE(2278), 1, - sym__name_or_operator, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [106586] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4534), 1, - anon_sym_AMP, - STATE(2372), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3201), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [106604] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4406), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106622] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4283), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106640] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4293), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106658] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4394), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106676] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4331), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106694] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4329), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106712] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3450), 1, - anon_sym_RPAREN, - ACTIONS(4519), 1, - anon_sym_elif, - ACTIONS(4536), 1, - anon_sym_else, - STATE(2323), 1, - aux_sym_condition_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [106732] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3458), 1, - anon_sym_RPAREN, - ACTIONS(4538), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(2331), 2, - sym_match_case, - aux_sym_match_repeat1, - [106750] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2073), 4, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_in, - [106764] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4008), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106782] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3222), 1, - anon_sym_RPAREN, - ACTIONS(4540), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(3224), 2, - anon_sym_AMP, - anon_sym_PIPE, - [106800] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2105), 4, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_in, - [106814] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(2069), 4, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_in, - [106828] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4377), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106846] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4363), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106864] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4542), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106882] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4313), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106900] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(4544), 1, - sym_name_identifier, - STATE(2257), 1, - sym__name_or_operator, - STATE(2739), 1, - sym_function_definition, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [106920] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4319), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106938] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(4546), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1975), 3, - anon_sym_RPAREN, - anon_sym_elif, - anon_sym_else, - [106954] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4341), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106972] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4388), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [106990] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4412), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107008] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4379), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107026] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, - anon_sym_LPAREN, - ACTIONS(4544), 1, - sym_name_identifier, - STATE(2257), 1, - sym__name_or_operator, - STATE(2523), 1, - sym_function_definition, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107046] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4548), 1, - anon_sym_LPAREN, - ACTIONS(4550), 1, + ACTIONS(63), 2, sym_type_identifier, - STATE(1373), 1, - sym_annotated_type, - STATE(1559), 1, - sym_type_definition, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107066] = 5, + sym_abstract_type_identifier, + [106238] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4327), 1, + ACTIONS(3400), 1, sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107084] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4359), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107102] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4335), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107120] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3187), 1, - anon_sym_AMP, - ACTIONS(3195), 1, - anon_sym_PIPE, - STATE(1381), 1, - aux_sym_tuple_type_repeat1, - STATE(1438), 1, - aux_sym_variant_type_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107140] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4349), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107158] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4398), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107176] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4408), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107194] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4552), 1, - anon_sym_AMP, - STATE(2370), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3240), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [107212] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4548), 1, + ACTIONS(4553), 1, anon_sym_LPAREN, - ACTIONS(4550), 1, - sym_type_identifier, - STATE(1373), 1, - sym_annotated_type, - STATE(2760), 1, - sym_type_definition, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107232] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4534), 1, - anon_sym_AMP, - STATE(2370), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3247), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [107250] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4317), 1, - sym_name_identifier, - STATE(2168), 1, + STATE(696), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2510), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4006), 2, + ACTIONS(3398), 2, anon_sym_TILDE, anon_sym_AT, - [107268] = 5, + [106265] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4297), 1, + ACTIONS(2455), 1, sym_name_identifier, - STATE(2168), 1, + ACTIONS(4545), 1, + anon_sym_LPAREN, + STATE(1731), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2491), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4006), 2, + ACTIONS(2742), 2, anon_sym_TILDE, anon_sym_AT, - [107286] = 5, + [106292] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4337), 1, + ACTIONS(2560), 1, sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107304] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4345), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107322] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4400), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107340] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4309), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107358] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4361), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107376] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4386), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107394] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4323), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107412] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4307), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107430] = 5, - ACTIONS(5), 1, - sym__doc_comment, ACTIONS(4555), 1, - anon_sym_elif, - STATE(2383), 1, - aux_sym_condition_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3511), 2, - anon_sym_RPAREN, - anon_sym_else, - [107448] = 6, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3128), 1, anon_sym_LPAREN, - ACTIONS(4532), 1, - sym_name_identifier, - STATE(1570), 1, - sym_function_declaration, - STATE(2278), 1, - sym__name_or_operator, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107468] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4414), 1, - sym_name_identifier, - STATE(2168), 1, + STATE(788), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2542), 1, aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4006), 2, + ACTIONS(795), 2, anon_sym_TILDE, anon_sym_AT, - [107486] = 5, + [106319] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4390), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2573), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107504] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4339), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107522] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4291), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107540] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4287), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107558] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(4558), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - ACTIONS(1975), 3, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACK, - [107574] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4365), 1, - sym_name_identifier, - STATE(2168), 1, - aux_sym_reference_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4006), 2, - anon_sym_TILDE, - anon_sym_AT, - [107592] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4562), 1, - anon_sym_RBRACK, - STATE(2432), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107609] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3201), 1, - anon_sym_do, - ACTIONS(4564), 1, - anon_sym_AMP, - STATE(2397), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107626] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3222), 1, - anon_sym_with, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(4566), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [107643] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4568), 1, - anon_sym_RBRACK, - STATE(2403), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107660] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1975), 1, - anon_sym_RPAREN, - ACTIONS(1977), 1, - anon_sym_PIPE, - ACTIONS(4570), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [107677] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3247), 1, - anon_sym_do, - ACTIONS(4564), 1, - anon_sym_AMP, - STATE(2439), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107694] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3247), 1, - anon_sym_while, - ACTIONS(4572), 1, - anon_sym_AMP, - STATE(2448), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107711] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4574), 1, - anon_sym_EQ, - ACTIONS(4576), 1, - sym_abstract_type_identifier, - STATE(2399), 1, - aux_sym_alias_definition_statement_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107728] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4579), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(3584), 2, - anon_sym_RPAREN, - anon_sym_PIPE, - [107743] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4538), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(2344), 2, - sym_match_case, - aux_sym_match_repeat1, - [107758] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4581), 1, - anon_sym_RBRACK, - STATE(2405), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107775] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4583), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107792] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3462), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1474), 2, - sym_match_case, - aux_sym_match_repeat1, - [107807] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4585), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107824] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3240), 1, - anon_sym_then, - ACTIONS(4587), 1, - anon_sym_AMP, - STATE(2406), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107841] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4590), 1, - anon_sym_EQ, - ACTIONS(4592), 1, - sym_abstract_type_identifier, - STATE(2399), 1, - aux_sym_alias_definition_statement_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107858] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4440), 1, - anon_sym_in, - ACTIONS(4594), 1, - anon_sym_AMP, - STATE(2408), 1, - aux_sym_tuple_name_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107875] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4475), 1, - anon_sym_in, - ACTIONS(4597), 1, - anon_sym_PIPE, - STATE(2409), 1, - aux_sym_variant_name_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107892] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3578), 1, - anon_sym_RPAREN, - ACTIONS(4600), 1, - anon_sym_AMP, - STATE(2419), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107909] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3247), 1, - anon_sym_then, - ACTIONS(4602), 1, - anon_sym_AMP, - STATE(2406), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107926] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4604), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107943] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3222), 1, - anon_sym_then, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(4606), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [107960] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4608), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107977] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4610), 1, - anon_sym_RBRACK, - STATE(2443), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [107994] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4614), 1, + ACTIONS(63), 2, sym_type_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4612), 2, - anon_sym_const, - anon_sym_var, - [108009] = 3, + sym_abstract_type_identifier, + [106346] = 8, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(2445), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4616), 3, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [106373] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2604), 1, + sym_name_identifier, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(809), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2538), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(723), 2, + anon_sym_TILDE, + anon_sym_AT, + [106400] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(4559), 1, + anon_sym_LPAREN, + STATE(1549), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2476), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2229), 2, + anon_sym_TILDE, + anon_sym_AT, + [106427] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2560), 1, + sym_name_identifier, + ACTIONS(4555), 1, + anon_sym_LPAREN, + STATE(791), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2542), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(795), 2, + anon_sym_TILDE, + anon_sym_AT, + [106454] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2604), 1, + sym_name_identifier, + ACTIONS(4557), 1, + anon_sym_LPAREN, + STATE(817), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2538), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(723), 2, + anon_sym_TILDE, + anon_sym_AT, + [106481] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2231), 1, + sym_name_identifier, + ACTIONS(4559), 1, + anon_sym_LPAREN, + STATE(1570), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2476), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2229), 2, + anon_sym_TILDE, + anon_sym_AT, + [106508] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2596), 1, + sym_name_identifier, + ACTIONS(4561), 1, + anon_sym_LPAREN, + STATE(1126), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2544), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1543), 2, + anon_sym_TILDE, + anon_sym_AT, + [106535] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2457), 1, + sym_name_identifier, + ACTIONS(4563), 1, + anon_sym_LPAREN, + STATE(1235), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2496), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1857), 2, + anon_sym_TILDE, + anon_sym_AT, + [106562] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2596), 1, + sym_name_identifier, + ACTIONS(4561), 1, + anon_sym_LPAREN, + STATE(1163), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2544), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1543), 2, + anon_sym_TILDE, + anon_sym_AT, + [106589] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2481), 1, + sym_name_identifier, + ACTIONS(4565), 1, + anon_sym_LPAREN, + STATE(967), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2550), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1339), 2, + anon_sym_TILDE, + anon_sym_AT, + [106616] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2457), 1, + sym_name_identifier, + ACTIONS(4563), 1, + anon_sym_LPAREN, + STATE(1270), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2496), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1857), 2, + anon_sym_TILDE, + anon_sym_AT, + [106643] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2606), 1, + sym_name_identifier, + ACTIONS(4567), 1, + anon_sym_LPAREN, + STATE(757), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2470), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(779), 2, + anon_sym_TILDE, + anon_sym_AT, + [106670] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2515), 1, + sym_name_identifier, + ACTIONS(4569), 1, + anon_sym_LPAREN, + STATE(1851), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2526), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2924), 2, + anon_sym_TILDE, + anon_sym_AT, + [106697] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2718), 1, + sym_name_identifier, + ACTIONS(4571), 1, + anon_sym_LPAREN, + STATE(1203), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2504), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1583), 2, + anon_sym_TILDE, + anon_sym_AT, + [106724] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2481), 1, + sym_name_identifier, + ACTIONS(4565), 1, + anon_sym_LPAREN, + STATE(966), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2550), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1339), 2, + anon_sym_TILDE, + anon_sym_AT, + [106751] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2515), 1, + sym_name_identifier, + ACTIONS(4569), 1, + anon_sym_LPAREN, + STATE(1841), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2526), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2924), 2, + anon_sym_TILDE, + anon_sym_AT, + [106778] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2718), 1, + sym_name_identifier, + ACTIONS(4571), 1, + anon_sym_LPAREN, + STATE(1157), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2504), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1583), 2, + anon_sym_TILDE, + anon_sym_AT, + [106805] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2598), 1, + sym_name_identifier, + ACTIONS(4573), 1, + anon_sym_LPAREN, + STATE(1828), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2495), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2988), 2, + anon_sym_TILDE, + anon_sym_AT, + [106832] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2598), 1, + sym_name_identifier, + ACTIONS(4573), 1, + anon_sym_LPAREN, + STATE(1825), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2495), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2988), 2, + anon_sym_TILDE, + anon_sym_AT, + [106859] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2722), 1, + sym_name_identifier, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(884), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2532), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1231), 2, + anon_sym_TILDE, + anon_sym_AT, + [106886] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2441), 1, + sym_name_identifier, + ACTIONS(4577), 1, + anon_sym_LPAREN, + STATE(1650), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2509), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2439), 2, + anon_sym_TILDE, + anon_sym_AT, + [106913] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2656), 1, + sym_name_identifier, + ACTIONS(4579), 1, + anon_sym_LPAREN, + STATE(1811), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2541), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3026), 2, + anon_sym_TILDE, + anon_sym_AT, + [106940] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2722), 1, + sym_name_identifier, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(986), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2532), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1231), 2, + anon_sym_TILDE, + anon_sym_AT, + [106967] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3436), 1, + sym_name_identifier, + ACTIONS(4543), 1, + anon_sym_LPAREN, + STATE(553), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2482), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3434), 2, + anon_sym_TILDE, + anon_sym_AT, + [106994] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2656), 1, + sym_name_identifier, + ACTIONS(4579), 1, + anon_sym_LPAREN, + STATE(1786), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2541), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3026), 2, + anon_sym_TILDE, + anon_sym_AT, + [107021] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2441), 1, + sym_name_identifier, + ACTIONS(4577), 1, + anon_sym_LPAREN, + STATE(1673), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2509), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2439), 2, + anon_sym_TILDE, + anon_sym_AT, + [107048] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2814), 1, + sym_name_identifier, + ACTIONS(4581), 1, + anon_sym_LPAREN, + STATE(1624), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2500), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2329), 2, + anon_sym_TILDE, + anon_sym_AT, + [107075] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2754), 1, + sym_name_identifier, + ACTIONS(4583), 1, + anon_sym_LPAREN, + STATE(1848), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3044), 2, + anon_sym_TILDE, + anon_sym_AT, + [107102] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2754), 1, + sym_name_identifier, + ACTIONS(4583), 1, + anon_sym_LPAREN, + STATE(1794), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2552), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3044), 2, + anon_sym_TILDE, + anon_sym_AT, + [107129] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2814), 1, + sym_name_identifier, + ACTIONS(4581), 1, + anon_sym_LPAREN, + STATE(1627), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2500), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2329), 2, + anon_sym_TILDE, + anon_sym_AT, + [107156] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2654), 1, + sym_name_identifier, + ACTIONS(4585), 1, + anon_sym_LPAREN, + STATE(821), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2548), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1379), 2, + anon_sym_TILDE, + anon_sym_AT, + [107183] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3483), 1, + sym_name_identifier, + ACTIONS(4587), 1, + anon_sym_LPAREN, + STATE(660), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2485), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3481), 2, + anon_sym_TILDE, + anon_sym_AT, + [107210] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2654), 1, + sym_name_identifier, + ACTIONS(4585), 1, + anon_sym_LPAREN, + STATE(814), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2548), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1379), 2, + anon_sym_TILDE, + anon_sym_AT, + [107237] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2606), 1, + sym_name_identifier, + ACTIONS(4567), 1, + anon_sym_LPAREN, + STATE(753), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2470), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(779), 2, + anon_sym_TILDE, + anon_sym_AT, + [107264] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2720), 1, + sym_name_identifier, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(719), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2498), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(373), 2, + anon_sym_TILDE, + anon_sym_AT, + [107291] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2391), 1, + sym_name_identifier, + ACTIONS(4591), 1, + anon_sym_LPAREN, + STATE(1645), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2389), 2, + anon_sym_TILDE, + anon_sym_AT, + [107318] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3483), 1, + sym_name_identifier, + ACTIONS(4587), 1, + anon_sym_LPAREN, + STATE(664), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2485), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3481), 2, + anon_sym_TILDE, + anon_sym_AT, + [107345] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2720), 1, + sym_name_identifier, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(724), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2498), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(373), 2, + anon_sym_TILDE, + anon_sym_AT, + [107372] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2391), 1, + sym_name_identifier, + ACTIONS(4591), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2537), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2389), 2, + anon_sym_TILDE, + anon_sym_AT, + [107399] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2465), 1, + sym_name_identifier, + ACTIONS(4593), 1, + anon_sym_LPAREN, + STATE(1049), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2472), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1621), 2, + anon_sym_TILDE, + anon_sym_AT, + [107426] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2109), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [107447] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2465), 1, + sym_name_identifier, + ACTIONS(4593), 1, + anon_sym_LPAREN, + STATE(1062), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2472), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1621), 2, + anon_sym_TILDE, + anon_sym_AT, + [107474] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2652), 1, + sym_name_identifier, + ACTIONS(4595), 1, + anon_sym_LPAREN, + STATE(765), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2535), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(391), 2, + anon_sym_TILDE, + anon_sym_AT, + [107501] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2608), 1, + sym_name_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + STATE(1069), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2527), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1685), 2, + anon_sym_TILDE, + anon_sym_AT, + [107528] = 8, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3546), 1, + sym_operator, + ACTIONS(4599), 1, + anon_sym_AMP, + ACTIONS(4601), 1, + anon_sym_PIPE, + STATE(2453), 1, + aux_sym_tuple_name_repeat1, + STATE(2457), 1, + aux_sym_variant_name_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + STATE(2958), 2, + sym_tuple_name, + sym_variant_name, + [107555] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2513), 1, + sym_name_identifier, + ACTIONS(4603), 1, + anon_sym_LPAREN, + STATE(734), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2519), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1269), 2, + anon_sym_TILDE, + anon_sym_AT, + [107582] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2513), 1, + sym_name_identifier, + ACTIONS(4603), 1, + anon_sym_LPAREN, + STATE(735), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2519), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1269), 2, + anon_sym_TILDE, + anon_sym_AT, + [107609] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2652), 1, + sym_name_identifier, + ACTIONS(4595), 1, + anon_sym_LPAREN, + STATE(763), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2535), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(391), 2, + anon_sym_TILDE, + anon_sym_AT, + [107636] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2680), 1, + sym_name_identifier, + ACTIONS(4605), 1, + anon_sym_LPAREN, + STATE(883), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2477), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1441), 2, + anon_sym_TILDE, + anon_sym_AT, + [107663] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2608), 1, + sym_name_identifier, + ACTIONS(4597), 1, + anon_sym_LPAREN, + STATE(1100), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2527), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1685), 2, + anon_sym_TILDE, + anon_sym_AT, + [107690] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2680), 1, + sym_name_identifier, + ACTIONS(4605), 1, + anon_sym_LPAREN, + STATE(881), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2477), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1441), 2, + anon_sym_TILDE, + anon_sym_AT, + [107717] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2728), 1, + sym_name_identifier, + ACTIONS(4607), 1, + anon_sym_LPAREN, + STATE(863), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2475), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1111), 2, + anon_sym_TILDE, + anon_sym_AT, + [107744] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2728), 1, + sym_name_identifier, + ACTIONS(4607), 1, + anon_sym_LPAREN, + STATE(798), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2475), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1111), 2, + anon_sym_TILDE, + anon_sym_AT, + [107771] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2600), 1, + sym_name_identifier, + ACTIONS(4609), 1, + anon_sym_LPAREN, + STATE(923), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2469), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1325), 2, + anon_sym_TILDE, + anon_sym_AT, + [107798] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3390), 1, + sym_name_identifier, + ACTIONS(4611), 1, + anon_sym_LPAREN, + STATE(638), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2471), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3388), 2, + anon_sym_TILDE, + anon_sym_AT, + [107825] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3390), 1, + sym_name_identifier, + ACTIONS(4611), 1, + anon_sym_LPAREN, + STATE(637), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2471), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3388), 2, + anon_sym_TILDE, + anon_sym_AT, + [107852] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2802), 1, + sym_name_identifier, + ACTIONS(4613), 1, + anon_sym_LPAREN, + STATE(858), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2517), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(761), 2, + anon_sym_TILDE, + anon_sym_AT, + [107879] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1684), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [107906] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2600), 1, + sym_name_identifier, + ACTIONS(4609), 1, + anon_sym_LPAREN, + STATE(915), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2469), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1325), 2, + anon_sym_TILDE, + anon_sym_AT, + [107933] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3418), 1, + sym_name_identifier, + ACTIONS(4615), 1, + anon_sym_LPAREN, + STATE(627), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2551), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3416), 2, + anon_sym_TILDE, + anon_sym_AT, + [107960] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3418), 1, + sym_name_identifier, + ACTIONS(4615), 1, + anon_sym_LPAREN, + STATE(625), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2551), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3416), 2, + anon_sym_TILDE, + anon_sym_AT, + [107987] = 8, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4599), 1, + anon_sym_AMP, + ACTIONS(4601), 1, + anon_sym_PIPE, + ACTIONS(4617), 1, + sym_operator, + STATE(2453), 1, + aux_sym_tuple_name_repeat1, + STATE(2457), 1, + aux_sym_variant_name_repeat1, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + STATE(2958), 2, + sym_tuple_name, + sym_variant_name, + [108014] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(4619), 1, + anon_sym_LPAREN, + STATE(1648), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2522), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_AT, + [108041] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2566), 1, + sym_name_identifier, + ACTIONS(4621), 1, + anon_sym_LPAREN, + STATE(1740), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2533), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2782), 2, + anon_sym_TILDE, + anon_sym_AT, + [108068] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2736), 1, + sym_name_identifier, + ACTIONS(4623), 1, + anon_sym_LPAREN, + STATE(834), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2506), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(835), 2, + anon_sym_TILDE, + anon_sym_AT, + [108095] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2347), 1, + sym_name_identifier, + ACTIONS(4619), 1, + anon_sym_LPAREN, + STATE(1658), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2522), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2345), 2, + anon_sym_TILDE, + anon_sym_AT, + [108122] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2802), 1, + sym_name_identifier, + ACTIONS(4613), 1, + anon_sym_LPAREN, + STATE(869), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2517), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(761), 2, + anon_sym_TILDE, + anon_sym_AT, + [108149] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2249), 1, + sym_name_identifier, + ACTIONS(4625), 1, + anon_sym_LPAREN, + STATE(1567), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2490), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2247), 2, + anon_sym_TILDE, + anon_sym_AT, + [108176] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + STATE(2171), 2, + sym_extended_name, + aux_sym_function_definition_repeat1, + [108201] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2736), 1, + sym_name_identifier, + ACTIONS(4623), 1, + anon_sym_LPAREN, + STATE(835), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2506), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(835), 2, + anon_sym_TILDE, + anon_sym_AT, + [108228] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4627), 1, + anon_sym_LPAREN, + ACTIONS(4633), 1, + sym_name_identifier, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2963), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4630), 2, + anon_sym_TILDE, + anon_sym_AT, + [108255] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2674), 1, + sym_name_identifier, + ACTIONS(4636), 1, + anon_sym_LPAREN, + STATE(760), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2503), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1771), 2, + anon_sym_TILDE, + anon_sym_AT, + [108282] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2249), 1, + sym_name_identifier, + ACTIONS(4625), 1, + anon_sym_LPAREN, + STATE(1575), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2490), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2247), 2, + anon_sym_TILDE, + anon_sym_AT, + [108309] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2558), 1, + sym_name_identifier, + ACTIONS(4638), 1, + anon_sym_LPAREN, + STATE(941), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2479), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1309), 2, + anon_sym_TILDE, + anon_sym_AT, + [108336] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2558), 1, + sym_name_identifier, + ACTIONS(4638), 1, + anon_sym_LPAREN, + STATE(949), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2479), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1309), 2, + anon_sym_TILDE, + anon_sym_AT, + [108363] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2836), 1, + sym_name_identifier, + ACTIONS(4640), 1, + anon_sym_LPAREN, + STATE(1561), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2539), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2177), 2, + anon_sym_TILDE, + anon_sym_AT, + [108390] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4642), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4644), 6, anon_sym_EQ, anon_sym_LT_DASH, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_in, - [108022] = 5, + [108409] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3615), 1, - anon_sym_RPAREN, - ACTIONS(4618), 1, - anon_sym_PIPE, - STATE(2418), 1, - aux_sym_variant_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108039] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3611), 1, - anon_sym_RPAREN, - ACTIONS(4621), 1, - anon_sym_AMP, - STATE(2419), 1, - aux_sym_tuple_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108056] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4624), 1, - anon_sym_RBRACK, - STATE(2414), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108073] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3240), 1, - anon_sym_with, - ACTIONS(4626), 1, - anon_sym_AMP, - STATE(2421), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108090] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4629), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108107] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4631), 1, - anon_sym_RBRACK, - STATE(2412), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108124] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3547), 1, - anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1512), 2, - sym_match_case, - aux_sym_match_repeat1, - [108139] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3615), 1, - anon_sym_RPAREN, - ACTIONS(3617), 1, - anon_sym_PIPE, - ACTIONS(4570), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [108156] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3247), 1, - anon_sym_with, - ACTIONS(4633), 1, - anon_sym_AMP, - STATE(2421), 1, - aux_sym_type_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108173] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3611), 1, - anon_sym_RPAREN, - ACTIONS(3613), 1, - anon_sym_AMP, - ACTIONS(4446), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [108190] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4635), 1, - anon_sym_RBRACK, - STATE(2433), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108207] = 5, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3222), 1, - anon_sym_do, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(4637), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [108224] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4639), 1, - anon_sym_DOT, - ACTIONS(4642), 1, - sym_type_identifier, - STATE(2430), 1, - aux_sym_constructor_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108241] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4644), 1, - anon_sym_RBRACK, - STATE(2422), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108258] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, + ACTIONS(2808), 1, + sym_name_identifier, ACTIONS(4646), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108275] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4560), 1, - anon_sym_SEMI, - ACTIONS(4648), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108292] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4650), 1, - anon_sym_SEMI, - ACTIONS(4653), 1, - anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108309] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3175), 1, anon_sym_LPAREN, - ACTIONS(3177), 1, + STATE(801), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2484), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1095), 2, + anon_sym_TILDE, + anon_sym_AT, + [108436] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2141), 1, + sym_name_identifier, + ACTIONS(4648), 1, + anon_sym_LPAREN, + STATE(1586), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2516), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2139), 2, + anon_sym_TILDE, + anon_sym_AT, + [108463] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2808), 1, + sym_name_identifier, + ACTIONS(4646), 1, + anon_sym_LPAREN, + STATE(800), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2484), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1095), 2, + anon_sym_TILDE, + anon_sym_AT, + [108490] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2836), 1, + sym_name_identifier, + ACTIONS(4640), 1, + anon_sym_LPAREN, + STATE(1543), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2539), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2177), 2, + anon_sym_TILDE, + anon_sym_AT, + [108517] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4256), 7, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_typeclass_identifier, + sym_name_identifier, + sym_type_identifier, sym_abstract_type_identifier, - STATE(1564), 1, - sym_annotated_abstract_type, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108326] = 5, + [108534] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3568), 1, - anon_sym_RPAREN, - ACTIONS(4655), 1, - anon_sym_PIPE, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, STATE(2418), 1, - aux_sym_variant_expression_repeat1, + aux_sym_name_expression_repeat1, + STATE(2974), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108343] = 5, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [108561] = 8, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3201), 1, - anon_sym_while, - ACTIONS(4572), 1, + ACTIONS(2856), 1, + sym_name_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(777), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2540), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(475), 2, + anon_sym_TILDE, + anon_sym_AT, + [108588] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2856), 1, + sym_name_identifier, + ACTIONS(4650), 1, + anon_sym_LPAREN, + STATE(780), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2540), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(475), 2, + anon_sym_TILDE, + anon_sym_AT, + [108615] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2566), 1, + sym_name_identifier, + ACTIONS(4621), 1, + anon_sym_LPAREN, + STATE(1744), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2533), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2782), 2, + anon_sym_TILDE, + anon_sym_AT, + [108642] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2664), 1, + sym_name_identifier, + ACTIONS(4652), 1, + anon_sym_LPAREN, + STATE(686), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2547), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(351), 2, + anon_sym_TILDE, + anon_sym_AT, + [108669] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2716), 1, + sym_name_identifier, + ACTIONS(4535), 1, + anon_sym_LPAREN, + STATE(771), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2492), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1055), 2, + anon_sym_TILDE, + anon_sym_AT, + [108696] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2664), 1, + sym_name_identifier, + ACTIONS(4652), 1, + anon_sym_LPAREN, + STATE(685), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2547), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(351), 2, + anon_sym_TILDE, + anon_sym_AT, + [108723] = 5, + ACTIONS(5), 1, + sym__doc_comment, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4656), 2, + anon_sym_TILDE, + anon_sym_AT, + ACTIONS(4654), 4, + anon_sym_LPAREN, + sym_name_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [108744] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2800), 1, + sym_name_identifier, + ACTIONS(4659), 1, + anon_sym_LPAREN, + STATE(740), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2489), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(441), 2, + anon_sym_TILDE, + anon_sym_AT, + [108771] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2800), 1, + sym_name_identifier, + ACTIONS(4659), 1, + anon_sym_LPAREN, + STATE(741), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2489), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(441), 2, + anon_sym_TILDE, + anon_sym_AT, + [108798] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3006), 1, + sym_parametrized_type, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [108825] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2115), 1, + sym_name_identifier, + ACTIONS(4661), 1, + anon_sym_LPAREN, + STATE(1509), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2511), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2113), 2, + anon_sym_TILDE, + anon_sym_AT, + [108852] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2844), 1, + sym_name_identifier, + ACTIONS(4663), 1, + anon_sym_LPAREN, + STATE(927), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2467), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1457), 2, + anon_sym_TILDE, + anon_sym_AT, + [108879] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2115), 1, + sym_name_identifier, + ACTIONS(4661), 1, + anon_sym_LPAREN, + STATE(1517), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2511), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2113), 2, + anon_sym_TILDE, + anon_sym_AT, + [108906] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2850), 1, + sym_name_identifier, + ACTIONS(4665), 1, + anon_sym_LPAREN, + STATE(849), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2528), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(963), 2, + anon_sym_TILDE, + anon_sym_AT, + [108933] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2850), 1, + sym_name_identifier, + ACTIONS(4665), 1, + anon_sym_LPAREN, + STATE(847), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2528), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(963), 2, + anon_sym_TILDE, + anon_sym_AT, + [108960] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1671), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [108987] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3467), 1, + sym_name_identifier, + ACTIONS(4667), 1, + anon_sym_LPAREN, + STATE(581), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2545), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3465), 2, + anon_sym_TILDE, + anon_sym_AT, + [109014] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2844), 1, + sym_name_identifier, + ACTIONS(4663), 1, + anon_sym_LPAREN, + STATE(921), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2467), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1457), 2, + anon_sym_TILDE, + anon_sym_AT, + [109041] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3467), 1, + sym_name_identifier, + ACTIONS(4667), 1, + anon_sym_LPAREN, + STATE(595), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2545), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3465), 2, + anon_sym_TILDE, + anon_sym_AT, + [109068] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2686), 1, + sym_name_identifier, + ACTIONS(4669), 1, + anon_sym_LPAREN, + STATE(720), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(459), 2, + anon_sym_TILDE, + anon_sym_AT, + [109095] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(167), 1, + sym_type_expression, + STATE(1593), 1, + sym_parametrized_type, + STATE(2418), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(63), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [109122] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2686), 1, + sym_name_identifier, + ACTIONS(4669), 1, + anon_sym_LPAREN, + STATE(718), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2505), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(459), 2, + anon_sym_TILDE, + anon_sym_AT, + [109149] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2674), 1, + sym_name_identifier, + ACTIONS(4636), 1, + anon_sym_LPAREN, + STATE(754), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2503), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(1771), 2, + anon_sym_TILDE, + anon_sym_AT, + [109176] = 8, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(2141), 1, + sym_name_identifier, + ACTIONS(4648), 1, + anon_sym_LPAREN, + STATE(1552), 1, + sym_extended_name, + STATE(2288), 1, + aux_sym_name_expression_repeat2, + STATE(2516), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2139), 2, + anon_sym_TILDE, + anon_sym_AT, + [109203] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2632), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109227] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(3091), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109251] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4673), 1, + sym_name_identifier, + STATE(691), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109275] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4677), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109299] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4679), 1, + sym_name_identifier, + STATE(691), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109323] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2637), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109347] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4683), 1, + sym_name_identifier, + STATE(618), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109371] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4687), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109395] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4689), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109419] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4691), 1, + anon_sym_LPAREN, + ACTIONS(4693), 1, + sym_name_identifier, + STATE(653), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109443] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4695), 1, + anon_sym_LPAREN, + ACTIONS(4697), 1, + sym_name_identifier, + STATE(675), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109467] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4699), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109491] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2640), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109515] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2626), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109539] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4701), 1, + anon_sym_LPAREN, + ACTIONS(4703), 1, + sym_name_identifier, + STATE(713), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109563] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4705), 1, + sym_name_identifier, + STATE(691), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109587] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4701), 1, + anon_sym_LPAREN, + ACTIONS(4707), 1, + sym_name_identifier, + STATE(713), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109611] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2625), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109635] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4709), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109659] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2634), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109683] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4711), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109707] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4715), 1, + sym_name_identifier, + STATE(646), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109731] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4717), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109755] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2628), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109779] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4719), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109803] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4721), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109827] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4691), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + sym_name_identifier, + STATE(653), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109851] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4725), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109875] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4727), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109899] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4729), 1, anon_sym_AMP, - STATE(2398), 1, + STATE(2405), 1, aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108360] = 5, + ACTIONS(3558), 4, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [109919] = 7, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3201), 1, - anon_sym_then, - ACTIONS(4602), 1, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2627), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [109943] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4731), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109967] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4695), 1, + anon_sym_LPAREN, + ACTIONS(4733), 1, + sym_name_identifier, + STATE(675), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [109991] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4735), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110015] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4737), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110039] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4739), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110063] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4741), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110087] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4701), 1, + anon_sym_LPAREN, + ACTIONS(4743), 1, + sym_name_identifier, + STATE(713), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110111] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4745), 1, + sym_name_identifier, + STATE(618), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110135] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4747), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110159] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3548), 1, + anon_sym_RPAREN, + ACTIONS(4749), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [110179] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2630), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110203] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4751), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110227] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4753), 1, + sym_name_identifier, + STATE(646), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110251] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4701), 1, + anon_sym_LPAREN, + ACTIONS(4755), 1, + sym_name_identifier, + STATE(713), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110275] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4691), 1, + anon_sym_LPAREN, + ACTIONS(4757), 1, + sym_name_identifier, + STATE(653), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110299] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2614), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110323] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4759), 1, + sym_name_identifier, + STATE(646), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110347] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4761), 1, + anon_sym_COLON, + ACTIONS(4763), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2399), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [110371] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2636), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110395] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2611), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110419] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4765), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110443] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4691), 1, + anon_sym_LPAREN, + ACTIONS(4767), 1, + sym_name_identifier, + STATE(653), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110467] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4769), 1, + sym_name_identifier, + STATE(618), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110491] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4695), 1, + anon_sym_LPAREN, + ACTIONS(4771), 1, + sym_name_identifier, + STATE(675), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110515] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2243), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + [110535] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4773), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110559] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2135), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 4, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + sym_operator, + [110579] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(2225), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_AMP, + sym_operator, + ACTIONS(343), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + [110599] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2623), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110623] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4685), 1, + anon_sym_LPAREN, + ACTIONS(4775), 1, + sym_name_identifier, + STATE(593), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110647] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4695), 1, + anon_sym_LPAREN, + ACTIONS(4777), 1, + sym_name_identifier, + STATE(675), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110671] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2622), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110695] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4779), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110719] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2621), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110743] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2618), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110767] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4681), 1, + anon_sym_LPAREN, + ACTIONS(4781), 1, + sym_name_identifier, + STATE(618), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110791] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4783), 6, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [110807] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2617), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110831] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4785), 6, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [110847] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4787), 1, + sym_typeclass_identifier, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4125), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [110871] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2646), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110895] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110919] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2615), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [110943] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4791), 1, + anon_sym_COLON, + ACTIONS(4793), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [110967] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + sym_name_identifier, + STATE(691), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [110991] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2619), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [111015] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2629), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [111039] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4797), 6, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [111055] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4675), 1, + anon_sym_LPAREN, + ACTIONS(4799), 1, + sym_name_identifier, + STATE(576), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [111079] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4729), 1, anon_sym_AMP, STATE(2411), 1, aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108377] = 5, + ACTIONS(3509), 4, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [111099] = 7, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3240), 1, - anon_sym_do, - ACTIONS(4657), 1, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2645), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [111123] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + ACTIONS(4787), 1, + sym_typeclass_identifier, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(185), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [111147] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2616), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [111171] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4023), 1, + sym_name_identifier, + ACTIONS(4029), 1, + anon_sym_LPAREN, + STATE(2534), 1, + aux_sym_reference_expression_repeat1, + STATE(2644), 1, + sym_extended_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4033), 2, + anon_sym_TILDE, + anon_sym_AT, + [111195] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + sym_name_identifier, + STATE(646), 1, + sym_scoped_statement, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [111219] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4803), 1, anon_sym_AMP, - STATE(2439), 1, + STATE(2411), 1, aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108394] = 5, + ACTIONS(3562), 4, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [111239] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4660), 1, - anon_sym_EQ, - ACTIONS(4662), 1, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, sym_abstract_type_identifier, - STATE(2407), 1, - aux_sym_alias_definition_statement_repeat1, + ACTIONS(4806), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108411] = 5, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111260] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3968), 1, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4808), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111281] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4810), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111302] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4812), 1, anon_sym_AMP, - ACTIONS(4424), 1, + STATE(2451), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [111321] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4814), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [111336] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4816), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [111351] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4238), 1, + anon_sym_LPAREN, + STATE(2032), 1, + aux_sym_name_expression_repeat1, + STATE(3048), 1, + sym_type_subexpression, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4125), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [111372] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4818), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111393] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4820), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111414] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4822), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111435] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4824), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111456] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4826), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111477] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(4828), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3548), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [111496] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4830), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111517] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4832), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111538] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4834), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111559] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4836), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111580] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4838), 5, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_AMP, + anon_sym_RPAREN, anon_sym_in, - STATE(2408), 1, + [111595] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4840), 5, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_in, + [111610] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4842), 1, + anon_sym_AMP, + STATE(2459), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_GT, + [111629] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4844), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111650] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4846), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111671] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4848), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111692] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(4850), 1, + anon_sym_inline, + ACTIONS(4852), 1, + sym_name_identifier, + STATE(2373), 1, + sym__name_or_operator, + STATE(3104), 1, + sym_function_definition, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [111715] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4854), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111736] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4856), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111757] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4858), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111778] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4860), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111799] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4862), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111820] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4812), 1, + anon_sym_AMP, + STATE(2415), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [111839] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4864), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111860] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4866), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [111875] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4868), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2419), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111896] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4870), 1, + anon_sym_AMP, + STATE(2456), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + [111915] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3548), 1, + anon_sym_RPAREN, + ACTIONS(4872), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_DASH_GT, + [111934] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4874), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [111955] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(4876), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3548), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + [111974] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4878), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + sym_typeclass_identifier, + sym_type_identifier, + sym_abstract_type_identifier, + [111989] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2435), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 3, + anon_sym_PIPE, + anon_sym_DASH_GT, + sym_operator, + [112008] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4880), 1, + anon_sym_AMP, + STATE(2451), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [112027] = 7, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(4852), 1, + sym_name_identifier, + ACTIONS(4883), 1, + anon_sym_inline, + STATE(2373), 1, + sym__name_or_operator, + STATE(2942), 1, + sym_function_definition, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [112050] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4027), 1, + anon_sym_AMP, + STATE(2458), 1, aux_sym_tuple_name_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108428] = 3, + ACTIONS(4885), 3, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_RPAREN, + [112069] = 6, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4664), 3, + ACTIONS(3501), 1, anon_sym_LPAREN, - sym_type_identifier, + ACTIONS(3503), 1, sym_abstract_type_identifier, - [108441] = 5, - ACTIONS(5), 1, + ACTIONS(4887), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [112090] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(345), 1, + sym_operator, + ACTIONS(2385), 1, + anon_sym_COLON, + ACTIONS(5), 2, sym__doc_comment, - ACTIONS(4560), 1, + sym__block_comment, + ACTIONS(343), 3, + anon_sym_RPAREN, anon_sym_SEMI, - ACTIONS(4666), 1, anon_sym_RBRACK, - STATE(2434), 1, - aux_sym_array_expression_repeat1, + [112109] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4870), 1, + anon_sym_AMP, + STATE(2466), 1, + aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108458] = 4, + ACTIONS(3509), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + [112128] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3555), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - STATE(1516), 2, - sym_match_case, - aux_sym_match_repeat1, - [108473] = 5, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3972), 1, - anon_sym_PIPE, - ACTIONS(4430), 1, - anon_sym_in, - STATE(2409), 1, + STATE(2461), 1, aux_sym_variant_name_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108490] = 5, + ACTIONS(4889), 3, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_RPAREN, + [112147] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3201), 1, - anon_sym_with, - ACTIONS(4633), 1, + ACTIONS(4891), 1, anon_sym_AMP, - STATE(2426), 1, + STATE(2458), 1, + aux_sym_tuple_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4838), 3, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_RPAREN, + [112166] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4842), 1, + anon_sym_AMP, + STATE(2465), 1, aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108507] = 5, + ACTIONS(3509), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_GT, + [112185] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4894), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [112206] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4896), 1, + anon_sym_PIPE, + STATE(2461), 1, + aux_sym_variant_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4840), 3, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_RPAREN, + [112225] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3501), 1, + anon_sym_LPAREN, + ACTIONS(3503), 1, + sym_abstract_type_identifier, + ACTIONS(4899), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1452), 2, + sym_annotated_abstract_type, + aux_sym_function_declaration_repeat1, + [112246] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(3222), 1, - anon_sym_while, - ACTIONS(3224), 1, - anon_sym_AMP, - ACTIONS(4668), 1, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(4901), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - [108524] = 5, + ACTIONS(1989), 3, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_DASH_GT, + [112265] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2341), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 3, + anon_sym_AMP, + anon_sym_PIPE, + sym_operator, + [112284] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3240), 1, - anon_sym_while, - ACTIONS(4670), 1, + ACTIONS(4903), 1, anon_sym_AMP, - STATE(2448), 1, + STATE(2465), 1, aux_sym_type_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108541] = 5, + ACTIONS(3562), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_DASH_GT, + [112303] = 5, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4673), 1, + ACTIONS(4906), 1, + anon_sym_AMP, + STATE(2466), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 3, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACK, + [112322] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4775), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112340] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4909), 1, + anon_sym_AMP, + STATE(2494), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3558), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [112358] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4705), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112376] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4795), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112394] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4911), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112412] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4739), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112430] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(4913), 1, + sym_name_identifier, + STATE(2373), 1, + sym__name_or_operator, + STATE(3077), 1, + sym_function_definition, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [112450] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(4913), 1, + sym_name_identifier, + STATE(2373), 1, + sym__name_or_operator, + STATE(2937), 1, + sym_function_definition, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [112470] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4753), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112488] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4711), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112506] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4771), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112524] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2021), 4, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_in, + [112538] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4697), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112556] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2037), 4, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_in, + [112570] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4915), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112588] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4917), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112606] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4919), 1, anon_sym_DOT, - ACTIONS(4675), 1, - sym_type_identifier, - STATE(2430), 1, + STATE(2483), 1, aux_sym_constructor_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108558] = 4, + ACTIONS(4922), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [112624] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4759), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112642] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4924), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112660] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4735), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112678] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(2013), 4, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_in, + [112692] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1975), 1, - anon_sym_then, - ACTIONS(4677), 1, + ACTIONS(4926), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - [108572] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4679), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108584] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4681), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108596] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3120), 1, - anon_sym_DASH_GT, - ACTIONS(4683), 1, + ACTIONS(1987), 3, anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [108610] = 3, + anon_sym_SEMI, + anon_sym_RBRACK, + [112708] = 5, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(4769), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4685), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108622] = 3, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112726] = 5, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(4715), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4687), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108634] = 3, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112744] = 5, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(4707), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4689), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108646] = 4, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112762] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4777), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112780] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4737), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112798] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4909), 1, + anon_sym_AMP, + STATE(2499), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3509), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [112816] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4731), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112834] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4721), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112852] = 5, ACTIONS(3), 1, sym__line_comment, - ACTIONS(3238), 1, + ACTIONS(343), 1, + anon_sym_RPAREN, + ACTIONS(2738), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(345), 2, + anon_sym_PIPE, sym_operator, - ACTIONS(4691), 1, + [112870] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4723), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112888] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4928), 1, + anon_sym_AMP, + STATE(2499), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3562), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [112906] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4717), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112924] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3519), 1, + anon_sym_AMP, + ACTIONS(3569), 1, + anon_sym_PIPE, + STATE(1457), 1, + aux_sym_tuple_type_repeat1, + STATE(1492), 1, + aux_sym_variant_type_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [112944] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4931), 1, + anon_sym_DOT, + STATE(2483), 1, + aux_sym_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4933), 2, + sym_type_identifier, + sym_abstract_type_identifier, + [112962] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4751), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112980] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4703), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [112998] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4801), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113016] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4719), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113034] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4935), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1987), 3, + anon_sym_RPAREN, + anon_sym_elif, + anon_sym_else, + [113050] = 4, + ACTIONS(5), 1, + sym__doc_comment, + STATE(3120), 1, + sym_partition_name, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4937), 3, + anon_sym_TEST, + anon_sym_INTERFACE, + anon_sym_CODE, + [113066] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4679), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113084] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4939), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113102] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4781), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113120] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3695), 1, + anon_sym_RPAREN, + ACTIONS(4941), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2513), 2, + sym_match_case, + aux_sym_match_repeat1, + [113138] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3662), 1, + anon_sym_RPAREN, + ACTIONS(4943), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2513), 2, + sym_match_case, + aux_sym_match_repeat1, + [113156] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(4946), 1, + sym_name_identifier, + STATE(1664), 1, + sym_function_declaration, + STATE(2444), 1, + sym__name_or_operator, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113176] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4948), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113194] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4767), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113212] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4757), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113230] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4773), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113248] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4779), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113266] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3707), 1, + anon_sym_RPAREN, + ACTIONS(4950), 1, + anon_sym_elif, + ACTIONS(4952), 1, + anon_sym_else, + STATE(2524), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113286] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4687), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113304] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4733), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113322] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4954), 1, + anon_sym_QMARK, + ACTIONS(4956), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3733), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [113340] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3677), 1, + anon_sym_RPAREN, + ACTIONS(4950), 1, + anon_sym_elif, + ACTIONS(4958), 1, + anon_sym_else, + STATE(2549), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113360] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3293), 1, + anon_sym_LPAREN, + ACTIONS(4946), 1, + sym_name_identifier, + STATE(1577), 1, + sym_function_declaration, + STATE(2444), 1, + sym__name_or_operator, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113380] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4725), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113398] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4743), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113416] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4799), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113434] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(4960), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(1989), 2, + anon_sym_PIPE, + anon_sym_DASH_GT, + [113452] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4962), 4, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_AT, + sym_name_identifier, + [113466] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3548), 1, + anon_sym_RPAREN, + ACTIONS(4964), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + ACTIONS(3550), 2, + anon_sym_AMP, + anon_sym_PIPE, + [113484] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4709), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113502] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4789), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113520] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4051), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113538] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4689), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113556] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4966), 1, + anon_sym_LPAREN, + ACTIONS(4968), 1, + sym_type_identifier, + STATE(1454), 1, + sym_annotated_type, + STATE(3100), 1, + sym_type_definition, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113576] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4765), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113594] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4699), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113612] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4727), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113630] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4683), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113648] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4741), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113666] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4693), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113684] = 6, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4966), 1, + anon_sym_LPAREN, + ACTIONS(4968), 1, + sym_type_identifier, + STATE(1454), 1, + sym_annotated_type, + STATE(1592), 1, + sym_type_definition, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113704] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4677), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113722] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4970), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113740] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4972), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113758] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4745), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113776] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4755), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113794] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4974), 1, + anon_sym_elif, + STATE(2549), 1, + aux_sym_condition_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3688), 2, + anon_sym_RPAREN, + anon_sym_else, + [113812] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4673), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113830] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4977), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113848] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4747), 1, + sym_name_identifier, + STATE(2307), 1, + aux_sym_reference_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4049), 2, + anon_sym_TILDE, + anon_sym_AT, + [113866] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(4981), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113883] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4983), 3, + anon_sym_EQ, + anon_sym_LT_DASH, + anon_sym_in, + [113896] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4985), 1, + anon_sym_EQ, + ACTIONS(4987), 1, + sym_abstract_type_identifier, + STATE(2600), 1, + aux_sym_alias_definition_statement_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113913] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3548), 1, + anon_sym_then, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(4989), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [113930] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(4991), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113947] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3558), 1, + anon_sym_while, + ACTIONS(4993), 1, + anon_sym_AMP, + STATE(2606), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113964] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4995), 1, + anon_sym_SEMI, + ACTIONS(4998), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [113981] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3756), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1542), 2, + sym_match_case, + aux_sym_match_repeat1, + [113996] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3562), 1, + anon_sym_with, + ACTIONS(5000), 1, + anon_sym_AMP, + STATE(2561), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114013] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3558), 1, + anon_sym_then, + ACTIONS(5003), 1, + anon_sym_AMP, + STATE(2568), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114030] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4840), 1, + anon_sym_in, + ACTIONS(5005), 1, + anon_sym_PIPE, + STATE(2563), 1, + aux_sym_variant_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114047] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5008), 1, + anon_sym_RBRACK, + STATE(2567), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114064] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3797), 1, + anon_sym_RPAREN, + ACTIONS(5010), 1, + anon_sym_AMP, + STATE(2597), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114081] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5012), 3, + anon_sym_LPAREN, + sym_type_identifier, + sym_abstract_type_identifier, + [114094] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5014), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114111] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3509), 1, + anon_sym_then, + ACTIONS(5003), 1, + anon_sym_AMP, + STATE(2575), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114128] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5016), 1, + anon_sym_RBRACK, + STATE(2570), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114145] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5018), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114162] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5020), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114179] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3780), 1, + anon_sym_RPAREN, + ACTIONS(5022), 1, + anon_sym_PIPE, + STATE(2586), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114196] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3558), 1, + anon_sym_with, + ACTIONS(5024), 1, + anon_sym_AMP, + STATE(2580), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114213] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5026), 1, + anon_sym_RBRACK, + STATE(2553), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114230] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3562), 1, + anon_sym_then, + ACTIONS(5028), 1, + anon_sym_AMP, + STATE(2575), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114247] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3548), 1, + anon_sym_while, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(5031), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114264] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4966), 1, + anon_sym_LPAREN, + ACTIONS(4968), 1, + sym_type_identifier, + STATE(1651), 1, + sym_annotated_type, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114281] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5033), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114298] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5035), 1, + anon_sym_RBRACK, + STATE(2571), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114315] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3509), 1, + anon_sym_with, + ACTIONS(5024), 1, + anon_sym_AMP, + STATE(2561), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114332] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3815), 1, + anon_sym_RPAREN, + ACTIONS(3817), 1, + anon_sym_AMP, + ACTIONS(4876), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114349] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5037), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114366] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3808), 1, + anon_sym_RPAREN, + ACTIONS(3810), 1, + anon_sym_PIPE, + ACTIONS(5039), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114383] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3699), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1511), 2, + sym_match_case, + aux_sym_match_repeat1, + [114398] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3562), 1, + anon_sym_do, + ACTIONS(5041), 1, + anon_sym_AMP, + STATE(2585), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114415] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3808), 1, + anon_sym_RPAREN, + ACTIONS(5044), 1, + anon_sym_PIPE, + STATE(2586), 1, + aux_sym_variant_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114432] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5047), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(3824), 2, + anon_sym_RPAREN, + anon_sym_PIPE, + [114447] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3509), 1, + anon_sym_do, + ACTIONS(5049), 1, + anon_sym_AMP, + STATE(2585), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114464] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4005), 1, + anon_sym_PIPE, + ACTIONS(4889), 1, + anon_sym_in, + STATE(2563), 1, + aux_sym_variant_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114481] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3548), 1, + anon_sym_do, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(5051), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114498] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3548), 1, + anon_sym_with, + ACTIONS(3550), 1, + anon_sym_AMP, + ACTIONS(5053), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114515] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3558), 1, + anon_sym_do, + ACTIONS(5049), 1, + anon_sym_AMP, + STATE(2588), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114532] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5055), 1, + anon_sym_EQ, + ACTIONS(5057), 1, + sym_abstract_type_identifier, + STATE(2593), 1, + aux_sym_alias_definition_statement_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114549] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3562), 1, + anon_sym_while, + ACTIONS(5060), 1, + anon_sym_AMP, + STATE(2594), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114566] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5063), 1, + anon_sym_RBRACK, + STATE(2582), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114583] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3765), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(1553), 2, + sym_match_case, + aux_sym_match_repeat1, + [114598] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3815), 1, + anon_sym_RPAREN, + ACTIONS(5065), 1, + anon_sym_AMP, + STATE(2597), 1, + aux_sym_tuple_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114615] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4001), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_in, + STATE(2608), 1, + aux_sym_tuple_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114632] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5068), 1, + anon_sym_RBRACK, + STATE(2578), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114649] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5070), 1, + anon_sym_EQ, + ACTIONS(5072), 1, + sym_abstract_type_identifier, + STATE(2593), 1, + aux_sym_alias_definition_statement_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114666] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5074), 1, + anon_sym_RBRACK, + STATE(2557), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114683] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5078), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5076), 2, + anon_sym_const, + anon_sym_var, + [114698] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5080), 1, + anon_sym_RBRACK, + STATE(2609), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114715] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4941), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + STATE(2512), 2, + sym_match_case, + aux_sym_match_repeat1, + [114730] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(343), 1, + anon_sym_with, + ACTIONS(345), 1, + sym_operator, + ACTIONS(3040), 1, + anon_sym_COLON, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114747] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3509), 1, + anon_sym_while, + ACTIONS(4993), 1, + anon_sym_AMP, + STATE(2594), 1, + aux_sym_type_constructor_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114764] = 5, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1987), 1, + anon_sym_RPAREN, + ACTIONS(1989), 1, + anon_sym_PIPE, + ACTIONS(5039), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114781] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4838), 1, + anon_sym_in, + ACTIONS(5082), 1, + anon_sym_AMP, + STATE(2608), 1, + aux_sym_tuple_name_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114798] = 5, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(4979), 1, + anon_sym_SEMI, + ACTIONS(5085), 1, + anon_sym_RBRACK, + STATE(2559), 1, + aux_sym_array_expression_repeat1, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114815] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5087), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114827] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5089), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114839] = 4, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5091), 1, + anon_sym_DQUOTE, + STATE(1640), 1, + sym_string_literal, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [114853] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(1987), 1, + anon_sym_with, + ACTIONS(5093), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [114867] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5095), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114879] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5097), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114891] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5099), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114903] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5101), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114915] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5103), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114927] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5105), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114939] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(4998), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [114951] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5107), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114963] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5109), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114975] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5111), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [114987] = 4, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3546), 1, + sym_operator, + ACTIONS(5113), 1, sym_abstract_type_identifier, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - [108660] = 3, + [115001] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4693), 2, + ACTIONS(5115), 2, anon_sym_EQ, anon_sym_LT_DASH, - [108672] = 4, + [115013] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5117), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [115025] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5119), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [115037] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5121), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [115049] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5123), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [115061] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + ACTIONS(5125), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [115073] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1975), 1, + ACTIONS(1987), 1, anon_sym_do, - ACTIONS(4695), 1, + ACTIONS(5127), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - [108686] = 4, + [115087] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4697), 1, - anon_sym_DQUOTE, - STATE(1810), 1, - sym_string_literal, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108700] = 4, + ACTIONS(5129), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [115099] = 4, ACTIONS(3), 1, sym__line_comment, - ACTIONS(1975), 1, - anon_sym_while, - ACTIONS(4699), 1, + ACTIONS(1987), 1, + anon_sym_then, + ACTIONS(5131), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - [108714] = 3, + [115113] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4653), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [108726] = 4, + ACTIONS(5133), 2, + anon_sym_EQ, + anon_sym_LT_DASH, + [115125] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4697), 1, + ACTIONS(5091), 1, anon_sym_DQUOTE, - STATE(1834), 1, + STATE(1727), 1, sym_string_literal, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108740] = 3, + [115139] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4701), 2, + ACTIONS(5135), 2, anon_sym_EQ, anon_sym_LT_DASH, - [108752] = 3, + [115151] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4703), 2, + ACTIONS(5137), 2, anon_sym_EQ, anon_sym_LT_DASH, - [108764] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, + [115163] = 4, + ACTIONS(3), 1, sym__line_comment, + ACTIONS(1987), 1, + anon_sym_while, + ACTIONS(5139), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, sym__block_comment, - ACTIONS(4705), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108776] = 3, + [115177] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4707), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108788] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4709), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108800] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4697), 1, + ACTIONS(5091), 1, anon_sym_DQUOTE, - STATE(1571), 1, + STATE(1687), 1, sym_string_literal, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108814] = 3, + [115191] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4711), 2, + ACTIONS(5141), 2, anon_sym_EQ, anon_sym_LT_DASH, - [108826] = 3, + [115203] = 4, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(5091), 1, + anon_sym_DQUOTE, + STATE(1746), 1, + sym_string_literal, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4713), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108838] = 3, + [115217] = 4, ACTIONS(5), 1, sym__doc_comment, + ACTIONS(3320), 1, + anon_sym_DASH_GT, + ACTIONS(5143), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4715), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108850] = 3, + [115231] = 4, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4717), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108862] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4719), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108874] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4721), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108886] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4723), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108898] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4725), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108910] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4727), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108922] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3446), 1, + ACTIONS(3754), 1, anon_sym_AMP, - STATE(1471), 1, + STATE(1539), 1, aux_sym_typeclass_definition_statement_repeat1, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [108936] = 3, + [115245] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4729), 2, + ACTIONS(5145), 2, anon_sym_EQ, anon_sym_LT_DASH, - [108948] = 3, + [115257] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4731), 2, + ACTIONS(5147), 2, anon_sym_EQ, anon_sym_LT_DASH, - [108960] = 4, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(1975), 1, - anon_sym_with, - ACTIONS(4733), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [108974] = 3, + [115269] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - ACTIONS(4735), 2, + ACTIONS(5149), 2, anon_sym_EQ, anon_sym_LT_DASH, - [108986] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4737), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [108998] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - ACTIONS(4739), 2, - anon_sym_EQ, - anon_sym_LT_DASH, - [109010] = 4, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4697), 1, - anon_sym_DQUOTE, - STATE(1610), 1, - sym_string_literal, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109024] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4741), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109035] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4743), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109046] = 2, - ACTIONS(4745), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109055] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4747), 1, - anon_sym_then, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109066] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4683), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109077] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4749), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109088] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4751), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109099] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4753), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109110] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4755), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109121] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4757), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109132] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4759), 1, - anon_sym_then, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109143] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4761), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109154] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4763), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109165] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4765), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109176] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4767), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109187] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4769), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109198] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4771), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109209] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4773), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109220] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4775), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109231] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4777), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109242] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4779), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109253] = 2, - ACTIONS(4781), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109262] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4783), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109273] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4785), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109284] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4787), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109295] = 2, - ACTIONS(4789), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109304] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4791), 1, - anon_sym_then, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109315] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4793), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109326] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4795), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109337] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4797), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109348] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4799), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109359] = 2, - ACTIONS(4801), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109368] = 3, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(4803), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [109379] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4805), 1, - anon_sym_then, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109390] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4807), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109401] = 3, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(4268), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [109412] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4809), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109423] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4811), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109434] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4813), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109445] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4815), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109456] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4817), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109467] = 2, - ACTIONS(4819), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109476] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4821), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109487] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4823), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109498] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4825), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109509] = 2, - ACTIONS(4827), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109518] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4829), 1, - anon_sym_then, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109529] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4831), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109540] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4833), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109551] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4835), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109562] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4837), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109573] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4839), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109584] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4841), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109595] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4843), 1, - anon_sym_then, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109606] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4845), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109617] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4847), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109628] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4849), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109639] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4851), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109650] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4853), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109661] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4855), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109672] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4857), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109683] = 2, - ACTIONS(4859), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109692] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4861), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109703] = 2, - ACTIONS(4863), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109712] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4865), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109723] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4867), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109734] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4869), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109745] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4871), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109756] = 2, - ACTIONS(4873), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109765] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(2053), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109776] = 2, - ACTIONS(4875), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109785] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4877), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109796] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4879), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109807] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4881), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109818] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4883), 1, - anon_sym_do, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109829] = 2, - ACTIONS(4885), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109838] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4887), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109849] = 2, - ACTIONS(4889), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109858] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4891), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109869] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4893), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109880] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4895), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109891] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4897), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109902] = 2, - ACTIONS(4899), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109911] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4901), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109922] = 2, - ACTIONS(4903), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109931] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4905), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109942] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4907), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109953] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4909), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109964] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4911), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109975] = 2, - ACTIONS(4913), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [109984] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4915), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [109995] = 2, - ACTIONS(4917), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110004] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4919), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110015] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4921), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110026] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4923), 1, - anon_sym_with, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110037] = 2, - ACTIONS(4925), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110046] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4927), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110057] = 2, - ACTIONS(4929), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110066] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4931), 1, - anon_sym_then, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110077] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4933), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110088] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4935), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110099] = 2, - ACTIONS(4937), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110108] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4939), 1, - anon_sym_while, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110119] = 2, - ACTIONS(4941), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110128] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4943), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110139] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4945), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110150] = 2, - ACTIONS(4947), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110159] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4949), 1, - anon_sym_do, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110170] = 2, - ACTIONS(4951), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110179] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4953), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110190] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4955), 1, - anon_sym_do, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110201] = 2, - ACTIONS(4957), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110210] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4959), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110221] = 2, - ACTIONS(4961), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110230] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4963), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110241] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4965), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110252] = 2, - ACTIONS(4967), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110261] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4969), 1, - anon_sym_while, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110272] = 2, - ACTIONS(4971), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110281] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4973), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110292] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4975), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110303] = 2, - ACTIONS(4977), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110312] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4979), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110323] = 2, - ACTIONS(4981), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110332] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4983), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110343] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4985), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110354] = 2, - ACTIONS(4987), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110363] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4989), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110374] = 2, - ACTIONS(4991), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110383] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4993), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110394] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4995), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110405] = 2, - ACTIONS(4997), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110414] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(4999), 1, - anon_sym_import, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110425] = 2, - ACTIONS(5001), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110434] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5003), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110445] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5005), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110456] = 2, - ACTIONS(5007), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110465] = 2, - ACTIONS(5009), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110474] = 2, - ACTIONS(5011), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110483] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5013), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110494] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5015), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110505] = 2, - ACTIONS(5017), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110514] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5019), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110525] = 2, - ACTIONS(5021), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110534] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5023), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110545] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5025), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110556] = 2, - ACTIONS(5027), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110565] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(313), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110576] = 2, - ACTIONS(5029), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110585] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5031), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110596] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5033), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110607] = 2, - ACTIONS(5035), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110616] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5037), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110627] = 2, - ACTIONS(5039), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110636] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5041), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110647] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5043), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110658] = 2, - ACTIONS(5045), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110667] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5047), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110678] = 2, - ACTIONS(5049), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110687] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5051), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110698] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5053), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110709] = 2, - ACTIONS(5055), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110718] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5057), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110729] = 2, - ACTIONS(5059), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110738] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5061), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110749] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5063), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110760] = 2, - ACTIONS(5065), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110769] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5067), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110780] = 2, - ACTIONS(5069), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110789] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5071), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110800] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5073), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110811] = 2, - ACTIONS(5075), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110820] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5077), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110831] = 2, - ACTIONS(5079), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110840] = 2, - ACTIONS(5081), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110849] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5083), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110860] = 2, - ACTIONS(5085), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110869] = 2, - ACTIONS(5087), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110878] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(3275), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110889] = 2, - ACTIONS(5089), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110898] = 2, - ACTIONS(5091), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110907] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5093), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110918] = 2, - ACTIONS(5095), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110927] = 2, - ACTIONS(5097), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110936] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5099), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110947] = 2, - ACTIONS(5101), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110956] = 2, - ACTIONS(5103), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110965] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5105), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [110976] = 2, - ACTIONS(5107), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110985] = 2, - ACTIONS(5109), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [110994] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5111), 1, - anon_sym_do, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111005] = 2, - ACTIONS(5113), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111014] = 2, - ACTIONS(5115), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111023] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5117), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111034] = 2, - ACTIONS(5119), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111043] = 2, - ACTIONS(5121), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111052] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5123), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111063] = 2, - ACTIONS(5125), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111072] = 2, - ACTIONS(5127), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111081] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5129), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111092] = 2, - ACTIONS(5131), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111101] = 2, - ACTIONS(5133), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111110] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5135), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111121] = 2, - ACTIONS(5137), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111130] = 2, - ACTIONS(5139), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111139] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5141), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111150] = 2, - ACTIONS(5143), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111159] = 2, - ACTIONS(5145), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111168] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5147), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111179] = 2, - ACTIONS(5149), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111188] = 2, + [115281] = 2, ACTIONS(5151), 1, aux_sym_string_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111197] = 3, + [115290] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2087), 1, - anon_sym_DOT, + ACTIONS(5153), 1, + anon_sym_while, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111208] = 2, - ACTIONS(5153), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, + [115301] = 3, + ACTIONS(3), 1, sym__line_comment, + ACTIONS(4387), 1, + sym_operator, + ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - [111217] = 2, + [115312] = 3, + ACTIONS(5), 1, + sym__doc_comment, ACTIONS(5155), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, + anon_sym_RPAREN, + ACTIONS(3), 2, sym__line_comment, - sym__doc_comment, sym__block_comment, - [111226] = 3, + [115323] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5157), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111237] = 2, + [115334] = 2, ACTIONS(5159), 1, aux_sym_char_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111246] = 2, + [115343] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(605), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115354] = 3, + ACTIONS(5), 1, + sym__doc_comment, ACTIONS(5161), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111255] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5163), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111266] = 2, - ACTIONS(5165), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111275] = 2, - ACTIONS(5167), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111284] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5169), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111295] = 2, - ACTIONS(5171), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111304] = 2, - ACTIONS(5173), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111313] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5175), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111324] = 2, - ACTIONS(5177), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111333] = 2, - ACTIONS(5179), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111342] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5181), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111353] = 2, - ACTIONS(5183), 1, + [115365] = 2, + ACTIONS(5163), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115374] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4363), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115385] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5165), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115396] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5167), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115407] = 2, + ACTIONS(5169), 1, aux_sym_char_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111362] = 2, + [115416] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5171), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115427] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(589), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115438] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5173), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115449] = 2, + ACTIONS(5175), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115458] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4433), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115469] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5177), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115480] = 2, + ACTIONS(5179), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115489] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5181), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115500] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5183), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115511] = 2, ACTIONS(5185), 1, aux_sym_string_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111371] = 3, + [115520] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4467), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115531] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5187), 1, - anon_sym_RBRACE, + ACTIONS(539), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111382] = 2, + [115542] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5187), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115553] = 2, ACTIONS(5189), 1, aux_sym_char_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111391] = 2, - ACTIONS(5191), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111400] = 3, + [115562] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5193), 1, + ACTIONS(5191), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111411] = 2, - ACTIONS(5195), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111420] = 2, - ACTIONS(5197), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111429] = 3, + [115573] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5199), 1, + ACTIONS(5193), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111440] = 2, - ACTIONS(5201), 1, + [115584] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5195), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115595] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4503), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115606] = 2, + ACTIONS(5197), 1, aux_sym_char_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111449] = 2, - ACTIONS(5203), 1, + [115615] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(501), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115626] = 2, + ACTIONS(5199), 1, aux_sym_string_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111458] = 3, + [115635] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4293), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115646] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5205), 1, - sym_type_identifier, + ACTIONS(5201), 1, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111469] = 2, + [115657] = 2, + ACTIONS(5203), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115666] = 2, + ACTIONS(5205), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115675] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4381), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115686] = 2, ACTIONS(5207), 1, aux_sym_char_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111478] = 2, + [115695] = 3, + ACTIONS(5), 1, + sym__doc_comment, ACTIONS(5209), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111487] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(461), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111498] = 2, - ACTIONS(5211), 1, - aux_sym_char_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111507] = 2, - ACTIONS(5213), 1, - aux_sym_string_literal_token1, - ACTIONS(5), 3, - sym__line_comment, - sym__doc_comment, - sym__block_comment, - [111516] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5215), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111527] = 2, - ACTIONS(5217), 1, + [115706] = 2, + ACTIONS(5211), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115715] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4375), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115726] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5213), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115737] = 2, + ACTIONS(5215), 1, aux_sym_char_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111536] = 3, + [115746] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5217), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115757] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5219), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111547] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5221), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111558] = 3, + [115768] = 2, + ACTIONS(5221), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115777] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4319), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115788] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5223), 1, - anon_sym_do, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111569] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [115799] = 2, ACTIONS(5225), 1, - anon_sym_COLON, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [111580] = 3, + [115808] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5227), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111591] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5229), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111602] = 3, + [115819] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5231), 1, - anon_sym_EQ, + ACTIONS(603), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111613] = 3, + [115830] = 2, + ACTIONS(5229), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115839] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4295), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115850] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(535), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [115861] = 2, + ACTIONS(5231), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115870] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5233), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111624] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [115881] = 2, ACTIONS(5235), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [111635] = 3, - ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5237), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, sym__block_comment, - [111646] = 3, + [115890] = 2, + ACTIONS(5237), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115899] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4519), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115910] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5239), 1, @@ -115388,47 +120052,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111657] = 3, + [115921] = 2, + ACTIONS(5241), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115930] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4415), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115941] = 2, + ACTIONS(5243), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115950] = 2, + ACTIONS(5245), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [115959] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4515), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [115970] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5241), 1, + ACTIONS(5247), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111668] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5243), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111679] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5245), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111690] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5247), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111701] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [115981] = 2, ACTIONS(5249), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [111712] = 3, + [115990] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5251), 1, @@ -115436,23 +120112,30 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111723] = 3, + [116001] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5253), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111734] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116012] = 2, ACTIONS(5255), 1, - anon_sym_COLON, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [111745] = 3, + [116021] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4441), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116032] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5257), 1, @@ -115460,135 +120143,158 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111756] = 3, - ACTIONS(3), 1, - sym__line_comment, - ACTIONS(3238), 1, - sym_operator, - ACTIONS(5), 2, - sym__doc_comment, - sym__block_comment, - [111767] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116043] = 2, ACTIONS(5259), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [111778] = 3, + [116052] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5261), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111789] = 3, + [116063] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5263), 1, - anon_sym_COLON, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111800] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116074] = 2, ACTIONS(5265), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [111811] = 3, - ACTIONS(5), 1, sym__doc_comment, - ACTIONS(4691), 1, - sym_abstract_type_identifier, - ACTIONS(3), 2, - sym__line_comment, sym__block_comment, - [111822] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5267), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111833] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5269), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111844] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5271), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111855] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5273), 1, - sym_type_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111866] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5275), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111877] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5277), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111888] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5279), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111899] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5281), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111910] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5283), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111921] = 3, + [116083] = 3, ACTIONS(3), 1, sym__line_comment, - ACTIONS(5285), 1, + ACTIONS(4391), 1, sym_operator, ACTIONS(5), 2, sym__doc_comment, sym__block_comment, - [111932] = 3, + [116094] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(599), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116105] = 2, + ACTIONS(5267), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116114] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(579), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116125] = 2, + ACTIONS(5269), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116134] = 2, + ACTIONS(5271), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116143] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4347), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116154] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5273), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116165] = 2, + ACTIONS(5275), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116174] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4279), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116185] = 2, + ACTIONS(5277), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116194] = 2, + ACTIONS(5279), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116203] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4419), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116214] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5281), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116225] = 2, + ACTIONS(5283), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116234] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5285), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116245] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5287), 1, @@ -115596,166 +120302,225 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111943] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116256] = 2, ACTIONS(5289), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [111954] = 2, - ACTIONS(5291), 1, aux_sym_string_literal_token1, ACTIONS(5), 3, sym__line_comment, sym__doc_comment, sym__block_comment, - [111963] = 3, + [116265] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4317), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116276] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5293), 1, - anon_sym_EQ, + ACTIONS(5291), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111974] = 3, + [116287] = 2, + ACTIONS(5293), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116296] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5295), 1, - anon_sym_LBRACE, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [111985] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116307] = 2, ACTIONS(5297), 1, - anon_sym_LBRACE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [111996] = 3, + [116316] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4325), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116327] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5299), 1, - anon_sym_LBRACE, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112007] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116338] = 2, ACTIONS(5301), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [112018] = 3, - ACTIONS(5), 1, sym__doc_comment, + sym__block_comment, + [116347] = 2, ACTIONS(5303), 1, - anon_sym_while, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112029] = 3, + [116356] = 2, + ACTIONS(5305), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116365] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4335), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116376] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5305), 1, + ACTIONS(609), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112040] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116387] = 2, ACTIONS(5307), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112051] = 3, + [116396] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5309), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112062] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5311), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112073] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5313), 1, - anon_sym_import, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112084] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5315), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112095] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5317), 1, - anon_sym_with, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112106] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5319), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112117] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5321), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112128] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5323), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112139] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5325), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112150] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5327), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112161] = 3, + [116407] = 2, + ACTIONS(5311), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116416] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4353), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116427] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5313), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116438] = 2, + ACTIONS(5315), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116447] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4315), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116458] = 2, + ACTIONS(5317), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116467] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4357), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116478] = 2, + ACTIONS(5319), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116487] = 2, + ACTIONS(5321), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116496] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5323), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116507] = 2, + ACTIONS(5325), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116516] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4411), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116527] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(591), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [116538] = 2, + ACTIONS(5327), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116547] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5329), 1, @@ -115763,31 +120528,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112172] = 3, + [116558] = 2, + ACTIONS(5331), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116567] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4425), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116578] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5331), 1, + ACTIONS(5333), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112183] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5333), 1, - anon_sym_with, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112194] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116589] = 2, ACTIONS(5335), 1, - anon_sym_in, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112205] = 3, + [116598] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5337), 1, @@ -115795,39 +120566,59 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112216] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116609] = 2, ACTIONS(5339), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [112227] = 3, - ACTIONS(5), 1, sym__doc_comment, + sym__block_comment, + [116618] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4439), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116629] = 2, ACTIONS(5341), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [112238] = 3, - ACTIONS(5), 1, sym__doc_comment, + sym__block_comment, + [116638] = 2, ACTIONS(5343), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116647] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(601), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112249] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116658] = 2, ACTIONS(5345), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112260] = 3, + [116667] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4451), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116678] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5347), 1, @@ -115835,95 +120626,112 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112271] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116689] = 2, ACTIONS(5349), 1, - anon_sym_with, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112282] = 3, + [116698] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5351), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112293] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5353), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112304] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5355), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112315] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5357), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + [116709] = 2, + ACTIONS(5353), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112326] = 3, + [116718] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4465), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116729] = 2, + ACTIONS(5355), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116738] = 2, + ACTIONS(5357), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116747] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5359), 1, - sym_type_identifier, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112337] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(333), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112348] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116758] = 2, ACTIONS(5361), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112359] = 3, + [116767] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4501), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116778] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5363), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112370] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116789] = 2, ACTIONS(5365), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [112381] = 3, - ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5367), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, sym__block_comment, - [112392] = 3, + [116798] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4331), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116809] = 2, + ACTIONS(5367), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116818] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4509), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116829] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5369), 1, @@ -115931,15 +120739,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112403] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116840] = 2, ACTIONS(5371), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112414] = 3, + [116849] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5373), 1, @@ -115947,39 +120754,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112425] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116860] = 2, ACTIONS(5375), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [112436] = 3, - ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2083), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__line_comment, sym__block_comment, - [112447] = 3, + [116869] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4517), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116880] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5377), 1, - anon_sym_DQUOTE, + anon_sym_then, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112458] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116891] = 2, ACTIONS(5379), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112469] = 3, + [116900] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5381), 1, @@ -115987,63 +120792,98 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112480] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [116911] = 2, ACTIONS(5383), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112491] = 3, + [116920] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4521), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116931] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5385), 1, + ACTIONS(593), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112502] = 3, + [116942] = 2, + ACTIONS(5385), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116951] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5387), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112513] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5389), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112524] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5391), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112535] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5393), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112546] = 3, + [116962] = 2, + ACTIONS(5389), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [116971] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4443), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [116982] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5395), 1, + ACTIONS(585), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112557] = 3, + [116993] = 2, + ACTIONS(5391), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117002] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5393), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [117013] = 2, + ACTIONS(5395), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117022] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4477), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117033] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5397), 1, @@ -116051,47 +120891,52 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112568] = 3, + [117044] = 2, + ACTIONS(5399), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117053] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5399), 1, + ACTIONS(5401), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112579] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5401), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112590] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117064] = 2, ACTIONS(5403), 1, - anon_sym_do, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112601] = 3, + [117073] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4453), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117084] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5405), 1, - anon_sym_RPAREN, + anon_sym_then, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112612] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117095] = 2, ACTIONS(5407), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112623] = 3, + [117104] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5409), 1, @@ -116099,15 +120944,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112634] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117115] = 2, ACTIONS(5411), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112645] = 3, + [117124] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4435), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117135] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5413), 1, @@ -116115,55 +120967,75 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112656] = 3, + [117146] = 2, + ACTIONS(5415), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117155] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5415), 1, + ACTIONS(5417), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112667] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5417), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112678] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117166] = 2, ACTIONS(5419), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112689] = 3, + [117175] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4421), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117186] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5421), 1, - anon_sym_RPAREN, + anon_sym_do, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112700] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117197] = 2, ACTIONS(5423), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117206] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(577), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112711] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117217] = 2, ACTIONS(5425), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112722] = 3, + [117226] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4449), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117237] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5427), 1, @@ -116171,71 +121043,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112733] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117248] = 2, ACTIONS(5429), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112744] = 3, + [117257] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [117268] = 2, + ACTIONS(5433), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117277] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4377), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117288] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(583), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112755] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5433), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112766] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117299] = 2, ACTIONS(5435), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112777] = 3, + [117308] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5437), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112788] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5439), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112799] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5441), 1, anon_sym_do, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112810] = 3, + [117319] = 2, + ACTIONS(5439), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117328] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4369), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117339] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5443), 1, - anon_sym_RPAREN, + ACTIONS(5441), 1, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112821] = 3, + [117350] = 2, + ACTIONS(5443), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117359] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5445), 1, @@ -116243,31 +121134,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112832] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117370] = 2, ACTIONS(5447), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112843] = 3, + [117379] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4365), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117390] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5449), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [112854] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5451), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112865] = 3, + [117401] = 2, + ACTIONS(5451), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117410] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5453), 1, @@ -116275,31 +121172,37 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112876] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117421] = 2, ACTIONS(5455), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112887] = 3, + [117430] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4355), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117441] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5457), 1, - anon_sym_RPAREN, + anon_sym_then, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112898] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117452] = 2, ACTIONS(5459), 1, - anon_sym_do, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112909] = 3, + [117461] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5461), 1, @@ -116307,39 +121210,60 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112920] = 3, + [117472] = 2, + ACTIONS(5463), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117481] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4345), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117492] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5463), 1, + ACTIONS(567), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112931] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117503] = 2, ACTIONS(5465), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112942] = 3, + [117512] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5467), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112953] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117523] = 2, ACTIONS(5469), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [112964] = 3, + [117532] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4323), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117543] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5471), 1, @@ -116347,79 +121271,88 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [112975] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117554] = 2, ACTIONS(5473), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [112986] = 3, - ACTIONS(5), 1, sym__doc_comment, - ACTIONS(2063), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym__line_comment, sym__block_comment, - [112997] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117563] = 2, ACTIONS(5475), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [113008] = 3, - ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5477), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__line_comment, sym__block_comment, - [113019] = 3, + [117572] = 2, + ACTIONS(5477), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117581] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4487), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117592] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5479), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113030] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5481), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113041] = 3, - ACTIONS(5), 1, + [117603] = 2, + ACTIONS(5481), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, sym__doc_comment, + sym__block_comment, + [117612] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4389), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117623] = 2, ACTIONS(5483), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [113052] = 3, - ACTIONS(5), 1, sym__doc_comment, + sym__block_comment, + [117632] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4283), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117643] = 2, ACTIONS(5485), 1, - sym_type_identifier, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, - sym__block_comment, - [113063] = 3, - ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5487), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, sym__block_comment, - [113074] = 3, + [117652] = 2, + ACTIONS(5487), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117661] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5489), 1, @@ -116427,15 +121360,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113085] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117672] = 2, ACTIONS(5491), 1, - anon_sym_then, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113096] = 3, + [117681] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4275), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117692] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5493), 1, @@ -116443,127 +121383,182 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113107] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117703] = 2, ACTIONS(5495), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113118] = 3, + [117712] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5497), 1, - anon_sym_RPAREN, + anon_sym_then, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113129] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117723] = 2, ACTIONS(5499), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113140] = 3, + [117732] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4533), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117743] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5501), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113151] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5503), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113162] = 3, + [117754] = 2, + ACTIONS(5503), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117763] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5505), 1, + ACTIONS(523), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113173] = 3, + [117774] = 2, + ACTIONS(5505), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117783] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4343), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117794] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5507), 1, - anon_sym_RPAREN, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113184] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117805] = 2, ACTIONS(5509), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113195] = 3, + [117814] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5511), 1, - anon_sym_RPAREN, + anon_sym_do, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113206] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117825] = 2, ACTIONS(5513), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117834] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4403), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117845] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(581), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113217] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117856] = 2, ACTIONS(5515), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113228] = 3, + [117865] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5517), 1, - anon_sym_DQUOTE, + anon_sym_do, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113239] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117876] = 2, ACTIONS(5519), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113250] = 3, + [117885] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4401), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117896] = 2, + ACTIONS(5521), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [117905] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4457), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [117916] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5521), 1, + ACTIONS(551), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113261] = 3, + [117927] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5523), 1, - anon_sym_SQUOTE, + anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113272] = 3, + [117938] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5525), 1, @@ -116571,71 +121566,93 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113283] = 3, + [117949] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5527), 1, - anon_sym_RPAREN, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113294] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [117960] = 2, ACTIONS(5529), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_char_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113305] = 3, + [117969] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5531), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [117980] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5533), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [117991] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5535), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118002] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4303), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [118013] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(495), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118024] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5537), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113316] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5533), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113327] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5535), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113338] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5537), 1, - sym_type_identifier, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113349] = 3, - ACTIONS(5), 1, - sym__doc_comment, + [118035] = 2, ACTIONS(5539), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, + aux_sym_string_literal_token1, + ACTIONS(5), 3, sym__line_comment, + sym__doc_comment, sym__block_comment, - [113360] = 3, + [118044] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5541), 1, - anon_sym_SQUOTE, + anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113371] = 3, + [118055] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(573), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118066] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5543), 1, @@ -116643,7 +121660,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113382] = 3, + [118077] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5545), 1, @@ -116651,39 +121668,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113393] = 3, + [118088] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5547), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113404] = 3, + [118099] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5549), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118110] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5551), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113415] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5551), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113426] = 3, + [118121] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5553), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118132] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(571), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113437] = 3, + [118143] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5555), 1, @@ -116691,55 +121716,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113448] = 3, + [118154] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5557), 1, - anon_sym_SQUOTE, + anon_sym_do, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113459] = 3, + [118165] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5559), 1, - anon_sym_RPAREN, + anon_sym_while, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113470] = 3, + [118176] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5561), 1, - anon_sym_RPAREN, + anon_sym_then, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113481] = 3, + [118187] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5563), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113492] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5565), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113503] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5567), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113514] = 3, + [118198] = 2, + ACTIONS(5565), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [118207] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5567), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118218] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5569), 1, @@ -116747,7 +121771,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113525] = 3, + [118229] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5571), 1, @@ -116755,31 +121779,39 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113536] = 3, + [118240] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5573), 1, - anon_sym_DQUOTE, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113547] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5575), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, - sym__line_comment, - sym__block_comment, - [113558] = 3, - ACTIONS(5), 1, - sym__doc_comment, - ACTIONS(5577), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113569] = 3, + [118251] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5575), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118262] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(4617), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [118273] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5577), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118284] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5579), 1, @@ -116787,2738 +121819,4769 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113580] = 3, + [118295] = 3, ACTIONS(5), 1, sym__doc_comment, ACTIONS(5581), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118306] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5583), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118317] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5585), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [118328] = 2, + ACTIONS(5587), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [118337] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(563), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__line_comment, sym__block_comment, - [113591] = 3, + [118348] = 3, ACTIONS(5), 1, sym__doc_comment, - ACTIONS(5583), 1, + ACTIONS(561), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118359] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5589), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__line_comment, sym__block_comment, + [118370] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5591), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118381] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5593), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118392] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5595), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118403] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(557), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118414] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5597), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118425] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5599), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118436] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5601), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118447] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5603), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118458] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(569), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118469] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5605), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118480] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5607), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118491] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5609), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118502] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(555), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118513] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5611), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118524] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5613), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118535] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5615), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118546] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5617), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118557] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5619), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118568] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5621), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118579] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5623), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118590] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5625), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118601] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5627), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118612] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5629), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118623] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5631), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118634] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(549), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118645] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5633), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118656] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5635), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118667] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(317), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118678] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5637), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118689] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5639), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118700] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5641), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118711] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5643), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118722] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(547), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118733] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5645), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118744] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5647), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118755] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5649), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118766] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5651), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118777] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5653), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118788] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(545), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118799] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5655), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118810] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5657), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118821] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5659), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118832] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(565), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118843] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5661), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118854] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(543), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118865] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5663), 1, + anon_sym_do, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118876] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5665), 1, + anon_sym_while, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118887] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5667), 1, + anon_sym_then, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118898] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5669), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118909] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5671), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118920] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5673), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118931] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5675), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118942] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5677), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118953] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5679), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118964] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5681), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118975] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5683), 1, + anon_sym_import, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118986] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5685), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [118997] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(595), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119008] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5143), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119019] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5687), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119030] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5689), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119041] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5691), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119052] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5693), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119063] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5695), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119074] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5697), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119085] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5699), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119096] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(533), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119107] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5701), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119118] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5703), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119129] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5705), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119140] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5707), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119151] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5709), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119162] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5711), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119173] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(531), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119184] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5713), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119195] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5715), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119206] = 2, + ACTIONS(5717), 1, + aux_sym_char_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [119215] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5719), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119226] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(303), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119237] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(553), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119248] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5721), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119259] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5723), 1, + anon_sym_with, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119270] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5725), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119281] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(3597), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119292] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(529), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119303] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5727), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119314] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5729), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119325] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5731), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119336] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5733), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119347] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5735), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119358] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(525), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119369] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5737), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119380] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5739), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119391] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5741), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119402] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5743), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119413] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5745), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119424] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5747), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119435] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(521), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119446] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5749), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119457] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5751), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119468] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5753), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119479] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5755), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119490] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5757), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119501] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(519), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119512] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5759), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119523] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5761), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119534] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5763), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119545] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5765), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119556] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5767), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119567] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5769), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119578] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5771), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119589] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(541), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119600] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5773), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119611] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(517), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119622] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5775), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119633] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5777), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119644] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5779), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119655] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5781), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119666] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(513), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119677] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5783), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119688] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5785), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119699] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5787), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119710] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5789), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119721] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5791), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119732] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5793), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119743] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5795), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119754] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5797), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119765] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(509), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119776] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5799), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119787] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5801), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119798] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5803), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119809] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5805), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119820] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5113), 1, + sym_abstract_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119831] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5807), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119842] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5809), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119853] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5811), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119864] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(507), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119875] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5813), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119886] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5815), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119897] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5817), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119908] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5819), 1, + anon_sym_import, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119919] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5821), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119930] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5823), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119941] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5825), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119952] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(3546), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [119963] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5827), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119974] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(505), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119985] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5829), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [119996] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5831), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120007] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5833), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120018] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(527), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120029] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5835), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120040] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5837), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120051] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5839), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120062] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(503), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120073] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5841), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120084] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5843), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120095] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5845), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120106] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5847), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120117] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5849), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120128] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5851), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120139] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5853), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120150] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5855), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120161] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5857), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120172] = 3, + ACTIONS(3), 1, + sym__line_comment, + ACTIONS(5859), 1, + sym_operator, + ACTIONS(5), 2, + sym__doc_comment, + sym__block_comment, + [120183] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5861), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120194] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(497), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120205] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5863), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120216] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5865), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120227] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5867), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120238] = 2, + ACTIONS(5869), 1, + aux_sym_string_literal_token1, + ACTIONS(5), 3, + sym__line_comment, + sym__doc_comment, + sym__block_comment, + [120247] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5871), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120258] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5873), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120269] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5875), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120280] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5877), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120291] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5879), 1, + anon_sym_LBRACE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120302] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5881), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120313] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5883), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120324] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5885), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120335] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(493), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120346] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5887), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120357] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5889), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120368] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5891), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120379] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5893), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120390] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(491), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120401] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5895), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120412] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5897), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120423] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5899), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120434] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5901), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120445] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5903), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120456] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5905), 1, + sym_type_identifier, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120467] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5907), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120478] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5909), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120489] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(515), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120500] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(489), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120511] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5911), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120522] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5913), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120533] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5915), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120544] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5917), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120555] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(537), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120566] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5919), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120577] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5921), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120588] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5923), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120599] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5925), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120610] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5927), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120621] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5929), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120632] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(405), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120643] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5931), 1, + anon_sym_DQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120654] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5933), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120665] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5935), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120676] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5937), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120687] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5939), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120698] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(5941), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, + [120709] = 3, + ACTIONS(5), 1, + sym__doc_comment, + ACTIONS(499), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__line_comment, + sym__block_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(208)] = 0, - [SMALL_STATE(209)] = 74, - [SMALL_STATE(210)] = 148, - [SMALL_STATE(211)] = 222, - [SMALL_STATE(212)] = 285, - [SMALL_STATE(213)] = 348, - [SMALL_STATE(214)] = 408, - [SMALL_STATE(215)] = 468, - [SMALL_STATE(216)] = 528, - [SMALL_STATE(217)] = 585, - [SMALL_STATE(218)] = 642, - [SMALL_STATE(219)] = 699, - [SMALL_STATE(220)] = 811, - [SMALL_STATE(221)] = 923, - [SMALL_STATE(222)] = 1035, - [SMALL_STATE(223)] = 1147, - [SMALL_STATE(224)] = 1259, - [SMALL_STATE(225)] = 1371, - [SMALL_STATE(226)] = 1483, - [SMALL_STATE(227)] = 1595, - [SMALL_STATE(228)] = 1707, - [SMALL_STATE(229)] = 1819, - [SMALL_STATE(230)] = 1931, - [SMALL_STATE(231)] = 2043, - [SMALL_STATE(232)] = 2155, - [SMALL_STATE(233)] = 2267, - [SMALL_STATE(234)] = 2379, - [SMALL_STATE(235)] = 2491, - [SMALL_STATE(236)] = 2583, - [SMALL_STATE(237)] = 2695, - [SMALL_STATE(238)] = 2807, - [SMALL_STATE(239)] = 2919, - [SMALL_STATE(240)] = 3031, - [SMALL_STATE(241)] = 3143, - [SMALL_STATE(242)] = 3255, - [SMALL_STATE(243)] = 3367, - [SMALL_STATE(244)] = 3479, - [SMALL_STATE(245)] = 3591, - [SMALL_STATE(246)] = 3703, - [SMALL_STATE(247)] = 3815, - [SMALL_STATE(248)] = 3927, - [SMALL_STATE(249)] = 4039, - [SMALL_STATE(250)] = 4151, - [SMALL_STATE(251)] = 4263, - [SMALL_STATE(252)] = 4375, - [SMALL_STATE(253)] = 4487, - [SMALL_STATE(254)] = 4599, - [SMALL_STATE(255)] = 4711, - [SMALL_STATE(256)] = 4823, - [SMALL_STATE(257)] = 4935, - [SMALL_STATE(258)] = 5047, - [SMALL_STATE(259)] = 5159, - [SMALL_STATE(260)] = 5271, - [SMALL_STATE(261)] = 5383, - [SMALL_STATE(262)] = 5495, - [SMALL_STATE(263)] = 5607, - [SMALL_STATE(264)] = 5719, - [SMALL_STATE(265)] = 5831, - [SMALL_STATE(266)] = 5943, - [SMALL_STATE(267)] = 6055, - [SMALL_STATE(268)] = 6167, - [SMALL_STATE(269)] = 6279, - [SMALL_STATE(270)] = 6391, - [SMALL_STATE(271)] = 6503, - [SMALL_STATE(272)] = 6615, - [SMALL_STATE(273)] = 6707, - [SMALL_STATE(274)] = 6819, - [SMALL_STATE(275)] = 6931, - [SMALL_STATE(276)] = 7023, - [SMALL_STATE(277)] = 7135, - [SMALL_STATE(278)] = 7247, - [SMALL_STATE(279)] = 7359, - [SMALL_STATE(280)] = 7468, - [SMALL_STATE(281)] = 7577, - [SMALL_STATE(282)] = 7686, - [SMALL_STATE(283)] = 7795, - [SMALL_STATE(284)] = 7904, - [SMALL_STATE(285)] = 7995, - [SMALL_STATE(286)] = 8104, - [SMALL_STATE(287)] = 8213, - [SMALL_STATE(288)] = 8304, - [SMALL_STATE(289)] = 8413, - [SMALL_STATE(290)] = 8522, - [SMALL_STATE(291)] = 8631, - [SMALL_STATE(292)] = 8740, - [SMALL_STATE(293)] = 8849, - [SMALL_STATE(294)] = 8958, - [SMALL_STATE(295)] = 9067, - [SMALL_STATE(296)] = 9176, - [SMALL_STATE(297)] = 9285, - [SMALL_STATE(298)] = 9394, - [SMALL_STATE(299)] = 9503, - [SMALL_STATE(300)] = 9612, - [SMALL_STATE(301)] = 9721, - [SMALL_STATE(302)] = 9830, - [SMALL_STATE(303)] = 9939, - [SMALL_STATE(304)] = 10048, - [SMALL_STATE(305)] = 10157, - [SMALL_STATE(306)] = 10266, - [SMALL_STATE(307)] = 10375, - [SMALL_STATE(308)] = 10484, - [SMALL_STATE(309)] = 10593, - [SMALL_STATE(310)] = 10702, - [SMALL_STATE(311)] = 10811, - [SMALL_STATE(312)] = 10920, - [SMALL_STATE(313)] = 11029, - [SMALL_STATE(314)] = 11138, - [SMALL_STATE(315)] = 11247, - [SMALL_STATE(316)] = 11356, - [SMALL_STATE(317)] = 11465, - [SMALL_STATE(318)] = 11574, - [SMALL_STATE(319)] = 11683, - [SMALL_STATE(320)] = 11792, - [SMALL_STATE(321)] = 11901, - [SMALL_STATE(322)] = 12010, - [SMALL_STATE(323)] = 12119, - [SMALL_STATE(324)] = 12228, - [SMALL_STATE(325)] = 12337, - [SMALL_STATE(326)] = 12446, - [SMALL_STATE(327)] = 12537, - [SMALL_STATE(328)] = 12646, - [SMALL_STATE(329)] = 12755, - [SMALL_STATE(330)] = 12864, - [SMALL_STATE(331)] = 12973, - [SMALL_STATE(332)] = 13082, - [SMALL_STATE(333)] = 13191, - [SMALL_STATE(334)] = 13282, - [SMALL_STATE(335)] = 13391, - [SMALL_STATE(336)] = 13482, - [SMALL_STATE(337)] = 13591, - [SMALL_STATE(338)] = 13682, - [SMALL_STATE(339)] = 13791, - [SMALL_STATE(340)] = 13900, - [SMALL_STATE(341)] = 14009, - [SMALL_STATE(342)] = 14118, - [SMALL_STATE(343)] = 14227, - [SMALL_STATE(344)] = 14336, - [SMALL_STATE(345)] = 14445, - [SMALL_STATE(346)] = 14554, - [SMALL_STATE(347)] = 14663, - [SMALL_STATE(348)] = 14772, - [SMALL_STATE(349)] = 14881, - [SMALL_STATE(350)] = 14990, - [SMALL_STATE(351)] = 15099, - [SMALL_STATE(352)] = 15208, - [SMALL_STATE(353)] = 15317, - [SMALL_STATE(354)] = 15426, - [SMALL_STATE(355)] = 15535, - [SMALL_STATE(356)] = 15644, - [SMALL_STATE(357)] = 15753, - [SMALL_STATE(358)] = 15862, - [SMALL_STATE(359)] = 15971, - [SMALL_STATE(360)] = 16080, - [SMALL_STATE(361)] = 16189, - [SMALL_STATE(362)] = 16298, - [SMALL_STATE(363)] = 16407, - [SMALL_STATE(364)] = 16516, - [SMALL_STATE(365)] = 16625, - [SMALL_STATE(366)] = 16734, - [SMALL_STATE(367)] = 16825, - [SMALL_STATE(368)] = 16934, - [SMALL_STATE(369)] = 17043, - [SMALL_STATE(370)] = 17134, - [SMALL_STATE(371)] = 17243, - [SMALL_STATE(372)] = 17334, - [SMALL_STATE(373)] = 17443, - [SMALL_STATE(374)] = 17552, - [SMALL_STATE(375)] = 17661, - [SMALL_STATE(376)] = 17770, - [SMALL_STATE(377)] = 17879, - [SMALL_STATE(378)] = 17988, - [SMALL_STATE(379)] = 18097, - [SMALL_STATE(380)] = 18206, - [SMALL_STATE(381)] = 18315, - [SMALL_STATE(382)] = 18424, - [SMALL_STATE(383)] = 18533, - [SMALL_STATE(384)] = 18624, - [SMALL_STATE(385)] = 18733, - [SMALL_STATE(386)] = 18842, - [SMALL_STATE(387)] = 18933, - [SMALL_STATE(388)] = 19042, - [SMALL_STATE(389)] = 19151, - [SMALL_STATE(390)] = 19260, - [SMALL_STATE(391)] = 19369, - [SMALL_STATE(392)] = 19478, - [SMALL_STATE(393)] = 19587, - [SMALL_STATE(394)] = 19696, - [SMALL_STATE(395)] = 19805, - [SMALL_STATE(396)] = 19914, - [SMALL_STATE(397)] = 20023, - [SMALL_STATE(398)] = 20132, - [SMALL_STATE(399)] = 20223, - [SMALL_STATE(400)] = 20332, - [SMALL_STATE(401)] = 20441, - [SMALL_STATE(402)] = 20550, - [SMALL_STATE(403)] = 20659, - [SMALL_STATE(404)] = 20768, - [SMALL_STATE(405)] = 20877, - [SMALL_STATE(406)] = 20986, - [SMALL_STATE(407)] = 21095, - [SMALL_STATE(408)] = 21204, - [SMALL_STATE(409)] = 21313, - [SMALL_STATE(410)] = 21422, - [SMALL_STATE(411)] = 21531, - [SMALL_STATE(412)] = 21640, - [SMALL_STATE(413)] = 21749, - [SMALL_STATE(414)] = 21858, - [SMALL_STATE(415)] = 21967, - [SMALL_STATE(416)] = 22076, - [SMALL_STATE(417)] = 22185, - [SMALL_STATE(418)] = 22294, - [SMALL_STATE(419)] = 22403, - [SMALL_STATE(420)] = 22512, - [SMALL_STATE(421)] = 22621, - [SMALL_STATE(422)] = 22730, - [SMALL_STATE(423)] = 22839, - [SMALL_STATE(424)] = 22948, - [SMALL_STATE(425)] = 23057, - [SMALL_STATE(426)] = 23166, - [SMALL_STATE(427)] = 23275, - [SMALL_STATE(428)] = 23384, - [SMALL_STATE(429)] = 23493, - [SMALL_STATE(430)] = 23602, - [SMALL_STATE(431)] = 23711, - [SMALL_STATE(432)] = 23820, - [SMALL_STATE(433)] = 23929, - [SMALL_STATE(434)] = 24038, - [SMALL_STATE(435)] = 24147, - [SMALL_STATE(436)] = 24256, - [SMALL_STATE(437)] = 24347, - [SMALL_STATE(438)] = 24456, - [SMALL_STATE(439)] = 24547, - [SMALL_STATE(440)] = 24656, - [SMALL_STATE(441)] = 24747, - [SMALL_STATE(442)] = 24856, - [SMALL_STATE(443)] = 24965, - [SMALL_STATE(444)] = 25074, - [SMALL_STATE(445)] = 25183, - [SMALL_STATE(446)] = 25292, - [SMALL_STATE(447)] = 25401, - [SMALL_STATE(448)] = 25510, - [SMALL_STATE(449)] = 25619, - [SMALL_STATE(450)] = 25728, - [SMALL_STATE(451)] = 25837, - [SMALL_STATE(452)] = 25946, - [SMALL_STATE(453)] = 26055, - [SMALL_STATE(454)] = 26164, - [SMALL_STATE(455)] = 26273, - [SMALL_STATE(456)] = 26382, - [SMALL_STATE(457)] = 26491, - [SMALL_STATE(458)] = 26600, - [SMALL_STATE(459)] = 26709, - [SMALL_STATE(460)] = 26818, - [SMALL_STATE(461)] = 26927, - [SMALL_STATE(462)] = 27036, - [SMALL_STATE(463)] = 27145, - [SMALL_STATE(464)] = 27254, - [SMALL_STATE(465)] = 27363, - [SMALL_STATE(466)] = 27472, - [SMALL_STATE(467)] = 27581, - [SMALL_STATE(468)] = 27690, - [SMALL_STATE(469)] = 27799, - [SMALL_STATE(470)] = 27908, - [SMALL_STATE(471)] = 28017, - [SMALL_STATE(472)] = 28126, - [SMALL_STATE(473)] = 28235, - [SMALL_STATE(474)] = 28344, - [SMALL_STATE(475)] = 28453, - [SMALL_STATE(476)] = 28562, - [SMALL_STATE(477)] = 28671, - [SMALL_STATE(478)] = 28780, - [SMALL_STATE(479)] = 28889, - [SMALL_STATE(480)] = 28998, - [SMALL_STATE(481)] = 29107, - [SMALL_STATE(482)] = 29216, - [SMALL_STATE(483)] = 29325, - [SMALL_STATE(484)] = 29434, - [SMALL_STATE(485)] = 29543, - [SMALL_STATE(486)] = 29652, - [SMALL_STATE(487)] = 29761, - [SMALL_STATE(488)] = 29870, - [SMALL_STATE(489)] = 29979, - [SMALL_STATE(490)] = 30088, - [SMALL_STATE(491)] = 30197, - [SMALL_STATE(492)] = 30306, - [SMALL_STATE(493)] = 30415, - [SMALL_STATE(494)] = 30524, - [SMALL_STATE(495)] = 30633, - [SMALL_STATE(496)] = 30742, - [SMALL_STATE(497)] = 30851, - [SMALL_STATE(498)] = 30960, - [SMALL_STATE(499)] = 31069, - [SMALL_STATE(500)] = 31178, - [SMALL_STATE(501)] = 31287, - [SMALL_STATE(502)] = 31396, - [SMALL_STATE(503)] = 31505, - [SMALL_STATE(504)] = 31614, - [SMALL_STATE(505)] = 31723, - [SMALL_STATE(506)] = 31832, - [SMALL_STATE(507)] = 31941, - [SMALL_STATE(508)] = 32050, - [SMALL_STATE(509)] = 32159, - [SMALL_STATE(510)] = 32268, - [SMALL_STATE(511)] = 32377, - [SMALL_STATE(512)] = 32486, - [SMALL_STATE(513)] = 32576, - [SMALL_STATE(514)] = 32666, - [SMALL_STATE(515)] = 32756, - [SMALL_STATE(516)] = 32846, - [SMALL_STATE(517)] = 32936, - [SMALL_STATE(518)] = 33026, - [SMALL_STATE(519)] = 33116, - [SMALL_STATE(520)] = 33206, - [SMALL_STATE(521)] = 33296, - [SMALL_STATE(522)] = 33386, - [SMALL_STATE(523)] = 33476, - [SMALL_STATE(524)] = 33566, - [SMALL_STATE(525)] = 33656, - [SMALL_STATE(526)] = 33746, - [SMALL_STATE(527)] = 33836, - [SMALL_STATE(528)] = 33926, - [SMALL_STATE(529)] = 34016, - [SMALL_STATE(530)] = 34106, - [SMALL_STATE(531)] = 34196, - [SMALL_STATE(532)] = 34286, - [SMALL_STATE(533)] = 34376, - [SMALL_STATE(534)] = 34466, - [SMALL_STATE(535)] = 34556, - [SMALL_STATE(536)] = 34646, - [SMALL_STATE(537)] = 34736, - [SMALL_STATE(538)] = 34826, - [SMALL_STATE(539)] = 34916, - [SMALL_STATE(540)] = 35005, - [SMALL_STATE(541)] = 35094, - [SMALL_STATE(542)] = 35183, - [SMALL_STATE(543)] = 35272, - [SMALL_STATE(544)] = 35361, - [SMALL_STATE(545)] = 35450, - [SMALL_STATE(546)] = 35539, - [SMALL_STATE(547)] = 35628, - [SMALL_STATE(548)] = 35717, - [SMALL_STATE(549)] = 35806, - [SMALL_STATE(550)] = 35895, - [SMALL_STATE(551)] = 35984, - [SMALL_STATE(552)] = 36073, - [SMALL_STATE(553)] = 36162, - [SMALL_STATE(554)] = 36251, - [SMALL_STATE(555)] = 36340, - [SMALL_STATE(556)] = 36429, - [SMALL_STATE(557)] = 36518, - [SMALL_STATE(558)] = 36607, - [SMALL_STATE(559)] = 36696, - [SMALL_STATE(560)] = 36785, - [SMALL_STATE(561)] = 36874, - [SMALL_STATE(562)] = 36963, - [SMALL_STATE(563)] = 37052, - [SMALL_STATE(564)] = 37140, - [SMALL_STATE(565)] = 37228, - [SMALL_STATE(566)] = 37316, - [SMALL_STATE(567)] = 37404, - [SMALL_STATE(568)] = 37492, - [SMALL_STATE(569)] = 37580, - [SMALL_STATE(570)] = 37668, - [SMALL_STATE(571)] = 37756, - [SMALL_STATE(572)] = 37844, - [SMALL_STATE(573)] = 37932, - [SMALL_STATE(574)] = 38020, - [SMALL_STATE(575)] = 38108, - [SMALL_STATE(576)] = 38196, - [SMALL_STATE(577)] = 38284, - [SMALL_STATE(578)] = 38372, - [SMALL_STATE(579)] = 38459, - [SMALL_STATE(580)] = 38546, - [SMALL_STATE(581)] = 38633, - [SMALL_STATE(582)] = 38720, - [SMALL_STATE(583)] = 38807, - [SMALL_STATE(584)] = 38894, - [SMALL_STATE(585)] = 38944, - [SMALL_STATE(586)] = 38994, - [SMALL_STATE(587)] = 39044, - [SMALL_STATE(588)] = 39094, - [SMALL_STATE(589)] = 39144, - [SMALL_STATE(590)] = 39194, - [SMALL_STATE(591)] = 39244, - [SMALL_STATE(592)] = 39294, - [SMALL_STATE(593)] = 39344, - [SMALL_STATE(594)] = 39394, - [SMALL_STATE(595)] = 39446, - [SMALL_STATE(596)] = 39496, - [SMALL_STATE(597)] = 39545, - [SMALL_STATE(598)] = 39594, - [SMALL_STATE(599)] = 39645, - [SMALL_STATE(600)] = 39694, - [SMALL_STATE(601)] = 39743, - [SMALL_STATE(602)] = 39792, - [SMALL_STATE(603)] = 39841, - [SMALL_STATE(604)] = 39890, - [SMALL_STATE(605)] = 39939, - [SMALL_STATE(606)] = 39987, - [SMALL_STATE(607)] = 40037, - [SMALL_STATE(608)] = 40085, - [SMALL_STATE(609)] = 40133, - [SMALL_STATE(610)] = 40181, - [SMALL_STATE(611)] = 40229, - [SMALL_STATE(612)] = 40277, - [SMALL_STATE(613)] = 40325, - [SMALL_STATE(614)] = 40373, - [SMALL_STATE(615)] = 40420, - [SMALL_STATE(616)] = 40467, - [SMALL_STATE(617)] = 40514, - [SMALL_STATE(618)] = 40563, - [SMALL_STATE(619)] = 40610, - [SMALL_STATE(620)] = 40657, - [SMALL_STATE(621)] = 40704, - [SMALL_STATE(622)] = 40751, - [SMALL_STATE(623)] = 40800, - [SMALL_STATE(624)] = 40847, - [SMALL_STATE(625)] = 40893, - [SMALL_STATE(626)] = 40939, - [SMALL_STATE(627)] = 40985, - [SMALL_STATE(628)] = 41031, - [SMALL_STATE(629)] = 41077, - [SMALL_STATE(630)] = 41125, - [SMALL_STATE(631)] = 41171, - [SMALL_STATE(632)] = 41217, - [SMALL_STATE(633)] = 41265, - [SMALL_STATE(634)] = 41311, - [SMALL_STATE(635)] = 41357, - [SMALL_STATE(636)] = 41403, - [SMALL_STATE(637)] = 41449, - [SMALL_STATE(638)] = 41495, - [SMALL_STATE(639)] = 41541, - [SMALL_STATE(640)] = 41587, - [SMALL_STATE(641)] = 41633, - [SMALL_STATE(642)] = 41679, - [SMALL_STATE(643)] = 41724, - [SMALL_STATE(644)] = 41769, - [SMALL_STATE(645)] = 41814, - [SMALL_STATE(646)] = 41859, - [SMALL_STATE(647)] = 41904, - [SMALL_STATE(648)] = 41949, - [SMALL_STATE(649)] = 41994, - [SMALL_STATE(650)] = 42039, - [SMALL_STATE(651)] = 42084, - [SMALL_STATE(652)] = 42129, - [SMALL_STATE(653)] = 42174, - [SMALL_STATE(654)] = 42219, - [SMALL_STATE(655)] = 42266, - [SMALL_STATE(656)] = 42311, - [SMALL_STATE(657)] = 42356, - [SMALL_STATE(658)] = 42401, - [SMALL_STATE(659)] = 42446, - [SMALL_STATE(660)] = 42490, - [SMALL_STATE(661)] = 42534, - [SMALL_STATE(662)] = 42578, - [SMALL_STATE(663)] = 42622, - [SMALL_STATE(664)] = 42666, - [SMALL_STATE(665)] = 42710, - [SMALL_STATE(666)] = 42754, - [SMALL_STATE(667)] = 42798, - [SMALL_STATE(668)] = 42842, - [SMALL_STATE(669)] = 42885, - [SMALL_STATE(670)] = 42930, - [SMALL_STATE(671)] = 42975, - [SMALL_STATE(672)] = 43020, - [SMALL_STATE(673)] = 43063, - [SMALL_STATE(674)] = 43108, - [SMALL_STATE(675)] = 43151, - [SMALL_STATE(676)] = 43194, - [SMALL_STATE(677)] = 43237, - [SMALL_STATE(678)] = 43280, - [SMALL_STATE(679)] = 43323, - [SMALL_STATE(680)] = 43366, - [SMALL_STATE(681)] = 43411, - [SMALL_STATE(682)] = 43454, - [SMALL_STATE(683)] = 43499, - [SMALL_STATE(684)] = 43542, - [SMALL_STATE(685)] = 43585, - [SMALL_STATE(686)] = 43628, - [SMALL_STATE(687)] = 43672, - [SMALL_STATE(688)] = 43714, - [SMALL_STATE(689)] = 43758, - [SMALL_STATE(690)] = 43802, - [SMALL_STATE(691)] = 43844, - [SMALL_STATE(692)] = 43888, - [SMALL_STATE(693)] = 43966, - [SMALL_STATE(694)] = 44008, - [SMALL_STATE(695)] = 44086, - [SMALL_STATE(696)] = 44128, - [SMALL_STATE(697)] = 44170, - [SMALL_STATE(698)] = 44214, - [SMALL_STATE(699)] = 44256, - [SMALL_STATE(700)] = 44334, - [SMALL_STATE(701)] = 44378, - [SMALL_STATE(702)] = 44420, - [SMALL_STATE(703)] = 44462, - [SMALL_STATE(704)] = 44504, - [SMALL_STATE(705)] = 44548, - [SMALL_STATE(706)] = 44592, - [SMALL_STATE(707)] = 44636, - [SMALL_STATE(708)] = 44680, - [SMALL_STATE(709)] = 44724, - [SMALL_STATE(710)] = 44766, - [SMALL_STATE(711)] = 44808, - [SMALL_STATE(712)] = 44850, - [SMALL_STATE(713)] = 44892, - [SMALL_STATE(714)] = 44934, - [SMALL_STATE(715)] = 44976, - [SMALL_STATE(716)] = 45018, - [SMALL_STATE(717)] = 45060, - [SMALL_STATE(718)] = 45102, - [SMALL_STATE(719)] = 45144, - [SMALL_STATE(720)] = 45186, - [SMALL_STATE(721)] = 45228, - [SMALL_STATE(722)] = 45270, - [SMALL_STATE(723)] = 45312, - [SMALL_STATE(724)] = 45356, - [SMALL_STATE(725)] = 45400, - [SMALL_STATE(726)] = 45444, - [SMALL_STATE(727)] = 45488, - [SMALL_STATE(728)] = 45532, - [SMALL_STATE(729)] = 45574, - [SMALL_STATE(730)] = 45616, - [SMALL_STATE(731)] = 45660, - [SMALL_STATE(732)] = 45702, - [SMALL_STATE(733)] = 45744, - [SMALL_STATE(734)] = 45788, - [SMALL_STATE(735)] = 45830, - [SMALL_STATE(736)] = 45872, - [SMALL_STATE(737)] = 45914, - [SMALL_STATE(738)] = 45956, - [SMALL_STATE(739)] = 45998, - [SMALL_STATE(740)] = 46042, - [SMALL_STATE(741)] = 46084, - [SMALL_STATE(742)] = 46126, - [SMALL_STATE(743)] = 46168, - [SMALL_STATE(744)] = 46212, - [SMALL_STATE(745)] = 46254, - [SMALL_STATE(746)] = 46296, - [SMALL_STATE(747)] = 46340, - [SMALL_STATE(748)] = 46382, - [SMALL_STATE(749)] = 46424, - [SMALL_STATE(750)] = 46468, - [SMALL_STATE(751)] = 46510, - [SMALL_STATE(752)] = 46552, - [SMALL_STATE(753)] = 46594, - [SMALL_STATE(754)] = 46636, - [SMALL_STATE(755)] = 46678, - [SMALL_STATE(756)] = 46720, - [SMALL_STATE(757)] = 46762, - [SMALL_STATE(758)] = 46804, - [SMALL_STATE(759)] = 46846, - [SMALL_STATE(760)] = 46888, - [SMALL_STATE(761)] = 46930, - [SMALL_STATE(762)] = 46972, - [SMALL_STATE(763)] = 47014, - [SMALL_STATE(764)] = 47056, - [SMALL_STATE(765)] = 47100, - [SMALL_STATE(766)] = 47142, - [SMALL_STATE(767)] = 47184, - [SMALL_STATE(768)] = 47228, - [SMALL_STATE(769)] = 47270, - [SMALL_STATE(770)] = 47312, - [SMALL_STATE(771)] = 47354, - [SMALL_STATE(772)] = 47396, - [SMALL_STATE(773)] = 47438, - [SMALL_STATE(774)] = 47482, - [SMALL_STATE(775)] = 47526, - [SMALL_STATE(776)] = 47570, - [SMALL_STATE(777)] = 47614, - [SMALL_STATE(778)] = 47658, - [SMALL_STATE(779)] = 47702, - [SMALL_STATE(780)] = 47745, - [SMALL_STATE(781)] = 47786, - [SMALL_STATE(782)] = 47863, - [SMALL_STATE(783)] = 47904, - [SMALL_STATE(784)] = 47945, - [SMALL_STATE(785)] = 48022, - [SMALL_STATE(786)] = 48063, - [SMALL_STATE(787)] = 48140, - [SMALL_STATE(788)] = 48181, - [SMALL_STATE(789)] = 48224, - [SMALL_STATE(790)] = 48301, - [SMALL_STATE(791)] = 48342, - [SMALL_STATE(792)] = 48383, - [SMALL_STATE(793)] = 48424, - [SMALL_STATE(794)] = 48465, - [SMALL_STATE(795)] = 48506, - [SMALL_STATE(796)] = 48583, - [SMALL_STATE(797)] = 48624, - [SMALL_STATE(798)] = 48701, - [SMALL_STATE(799)] = 48742, - [SMALL_STATE(800)] = 48783, - [SMALL_STATE(801)] = 48824, - [SMALL_STATE(802)] = 48865, - [SMALL_STATE(803)] = 48906, - [SMALL_STATE(804)] = 48947, - [SMALL_STATE(805)] = 48988, - [SMALL_STATE(806)] = 49031, - [SMALL_STATE(807)] = 49072, - [SMALL_STATE(808)] = 49113, - [SMALL_STATE(809)] = 49156, - [SMALL_STATE(810)] = 49199, - [SMALL_STATE(811)] = 49240, - [SMALL_STATE(812)] = 49283, - [SMALL_STATE(813)] = 49326, - [SMALL_STATE(814)] = 49369, - [SMALL_STATE(815)] = 49410, - [SMALL_STATE(816)] = 49453, - [SMALL_STATE(817)] = 49494, - [SMALL_STATE(818)] = 49535, - [SMALL_STATE(819)] = 49576, - [SMALL_STATE(820)] = 49619, - [SMALL_STATE(821)] = 49660, - [SMALL_STATE(822)] = 49703, - [SMALL_STATE(823)] = 49746, - [SMALL_STATE(824)] = 49789, - [SMALL_STATE(825)] = 49832, - [SMALL_STATE(826)] = 49875, - [SMALL_STATE(827)] = 49918, - [SMALL_STATE(828)] = 49961, - [SMALL_STATE(829)] = 50002, - [SMALL_STATE(830)] = 50043, - [SMALL_STATE(831)] = 50086, - [SMALL_STATE(832)] = 50129, - [SMALL_STATE(833)] = 50170, - [SMALL_STATE(834)] = 50213, - [SMALL_STATE(835)] = 50254, - [SMALL_STATE(836)] = 50297, - [SMALL_STATE(837)] = 50338, - [SMALL_STATE(838)] = 50379, - [SMALL_STATE(839)] = 50420, - [SMALL_STATE(840)] = 50461, - [SMALL_STATE(841)] = 50502, - [SMALL_STATE(842)] = 50543, - [SMALL_STATE(843)] = 50586, - [SMALL_STATE(844)] = 50629, - [SMALL_STATE(845)] = 50672, - [SMALL_STATE(846)] = 50715, - [SMALL_STATE(847)] = 50792, - [SMALL_STATE(848)] = 50835, - [SMALL_STATE(849)] = 50878, - [SMALL_STATE(850)] = 50921, - [SMALL_STATE(851)] = 50962, - [SMALL_STATE(852)] = 51005, - [SMALL_STATE(853)] = 51046, - [SMALL_STATE(854)] = 51123, - [SMALL_STATE(855)] = 51164, - [SMALL_STATE(856)] = 51241, - [SMALL_STATE(857)] = 51282, - [SMALL_STATE(858)] = 51323, - [SMALL_STATE(859)] = 51364, - [SMALL_STATE(860)] = 51405, - [SMALL_STATE(861)] = 51448, - [SMALL_STATE(862)] = 51489, - [SMALL_STATE(863)] = 51530, - [SMALL_STATE(864)] = 51573, - [SMALL_STATE(865)] = 51614, - [SMALL_STATE(866)] = 51657, - [SMALL_STATE(867)] = 51700, - [SMALL_STATE(868)] = 51741, - [SMALL_STATE(869)] = 51782, - [SMALL_STATE(870)] = 51823, - [SMALL_STATE(871)] = 51866, - [SMALL_STATE(872)] = 51907, - [SMALL_STATE(873)] = 51950, - [SMALL_STATE(874)] = 51991, - [SMALL_STATE(875)] = 52032, - [SMALL_STATE(876)] = 52073, - [SMALL_STATE(877)] = 52114, - [SMALL_STATE(878)] = 52155, - [SMALL_STATE(879)] = 52196, - [SMALL_STATE(880)] = 52237, - [SMALL_STATE(881)] = 52314, - [SMALL_STATE(882)] = 52355, - [SMALL_STATE(883)] = 52396, - [SMALL_STATE(884)] = 52437, - [SMALL_STATE(885)] = 52478, - [SMALL_STATE(886)] = 52555, - [SMALL_STATE(887)] = 52596, - [SMALL_STATE(888)] = 52637, - [SMALL_STATE(889)] = 52678, - [SMALL_STATE(890)] = 52719, - [SMALL_STATE(891)] = 52762, - [SMALL_STATE(892)] = 52803, - [SMALL_STATE(893)] = 52880, - [SMALL_STATE(894)] = 52921, - [SMALL_STATE(895)] = 52962, - [SMALL_STATE(896)] = 53005, - [SMALL_STATE(897)] = 53046, - [SMALL_STATE(898)] = 53089, - [SMALL_STATE(899)] = 53132, - [SMALL_STATE(900)] = 53173, - [SMALL_STATE(901)] = 53214, - [SMALL_STATE(902)] = 53257, - [SMALL_STATE(903)] = 53298, - [SMALL_STATE(904)] = 53339, - [SMALL_STATE(905)] = 53380, - [SMALL_STATE(906)] = 53423, - [SMALL_STATE(907)] = 53464, - [SMALL_STATE(908)] = 53505, - [SMALL_STATE(909)] = 53546, - [SMALL_STATE(910)] = 53587, - [SMALL_STATE(911)] = 53628, - [SMALL_STATE(912)] = 53671, - [SMALL_STATE(913)] = 53712, - [SMALL_STATE(914)] = 53753, - [SMALL_STATE(915)] = 53794, - [SMALL_STATE(916)] = 53835, - [SMALL_STATE(917)] = 53876, - [SMALL_STATE(918)] = 53917, - [SMALL_STATE(919)] = 53958, - [SMALL_STATE(920)] = 53999, - [SMALL_STATE(921)] = 54040, - [SMALL_STATE(922)] = 54081, - [SMALL_STATE(923)] = 54124, - [SMALL_STATE(924)] = 54165, - [SMALL_STATE(925)] = 54206, - [SMALL_STATE(926)] = 54249, - [SMALL_STATE(927)] = 54292, - [SMALL_STATE(928)] = 54333, - [SMALL_STATE(929)] = 54376, - [SMALL_STATE(930)] = 54417, - [SMALL_STATE(931)] = 54458, - [SMALL_STATE(932)] = 54499, - [SMALL_STATE(933)] = 54540, - [SMALL_STATE(934)] = 54581, - [SMALL_STATE(935)] = 54624, - [SMALL_STATE(936)] = 54667, - [SMALL_STATE(937)] = 54708, - [SMALL_STATE(938)] = 54749, - [SMALL_STATE(939)] = 54792, - [SMALL_STATE(940)] = 54835, - [SMALL_STATE(941)] = 54876, - [SMALL_STATE(942)] = 54919, - [SMALL_STATE(943)] = 54962, - [SMALL_STATE(944)] = 55005, - [SMALL_STATE(945)] = 55048, - [SMALL_STATE(946)] = 55088, - [SMALL_STATE(947)] = 55164, - [SMALL_STATE(948)] = 55240, - [SMALL_STATE(949)] = 55280, - [SMALL_STATE(950)] = 55320, - [SMALL_STATE(951)] = 55360, - [SMALL_STATE(952)] = 55402, - [SMALL_STATE(953)] = 55442, - [SMALL_STATE(954)] = 55518, - [SMALL_STATE(955)] = 55558, - [SMALL_STATE(956)] = 55598, - [SMALL_STATE(957)] = 55640, - [SMALL_STATE(958)] = 55680, - [SMALL_STATE(959)] = 55720, - [SMALL_STATE(960)] = 55796, - [SMALL_STATE(961)] = 55836, - [SMALL_STATE(962)] = 55876, - [SMALL_STATE(963)] = 55916, - [SMALL_STATE(964)] = 55958, - [SMALL_STATE(965)] = 56034, - [SMALL_STATE(966)] = 56074, - [SMALL_STATE(967)] = 56116, - [SMALL_STATE(968)] = 56156, - [SMALL_STATE(969)] = 56196, - [SMALL_STATE(970)] = 56236, - [SMALL_STATE(971)] = 56304, - [SMALL_STATE(972)] = 56344, - [SMALL_STATE(973)] = 56384, - [SMALL_STATE(974)] = 56424, - [SMALL_STATE(975)] = 56464, - [SMALL_STATE(976)] = 56504, - [SMALL_STATE(977)] = 56544, - [SMALL_STATE(978)] = 56586, - [SMALL_STATE(979)] = 56626, - [SMALL_STATE(980)] = 56702, - [SMALL_STATE(981)] = 56778, - [SMALL_STATE(982)] = 56818, - [SMALL_STATE(983)] = 56858, - [SMALL_STATE(984)] = 56900, - [SMALL_STATE(985)] = 56976, - [SMALL_STATE(986)] = 57018, - [SMALL_STATE(987)] = 57058, - [SMALL_STATE(988)] = 57100, - [SMALL_STATE(989)] = 57140, - [SMALL_STATE(990)] = 57182, - [SMALL_STATE(991)] = 57222, - [SMALL_STATE(992)] = 57262, - [SMALL_STATE(993)] = 57338, - [SMALL_STATE(994)] = 57414, - [SMALL_STATE(995)] = 57490, - [SMALL_STATE(996)] = 57566, - [SMALL_STATE(997)] = 57608, - [SMALL_STATE(998)] = 57648, - [SMALL_STATE(999)] = 57724, - [SMALL_STATE(1000)] = 57766, - [SMALL_STATE(1001)] = 57806, - [SMALL_STATE(1002)] = 57846, - [SMALL_STATE(1003)] = 57922, - [SMALL_STATE(1004)] = 57998, - [SMALL_STATE(1005)] = 58074, - [SMALL_STATE(1006)] = 58116, - [SMALL_STATE(1007)] = 58158, - [SMALL_STATE(1008)] = 58198, - [SMALL_STATE(1009)] = 58240, - [SMALL_STATE(1010)] = 58308, - [SMALL_STATE(1011)] = 58350, - [SMALL_STATE(1012)] = 58390, - [SMALL_STATE(1013)] = 58430, - [SMALL_STATE(1014)] = 58470, - [SMALL_STATE(1015)] = 58510, - [SMALL_STATE(1016)] = 58586, - [SMALL_STATE(1017)] = 58628, - [SMALL_STATE(1018)] = 58668, - [SMALL_STATE(1019)] = 58708, - [SMALL_STATE(1020)] = 58748, - [SMALL_STATE(1021)] = 58788, - [SMALL_STATE(1022)] = 58830, - [SMALL_STATE(1023)] = 58870, - [SMALL_STATE(1024)] = 58910, - [SMALL_STATE(1025)] = 58950, - [SMALL_STATE(1026)] = 58990, - [SMALL_STATE(1027)] = 59030, - [SMALL_STATE(1028)] = 59072, - [SMALL_STATE(1029)] = 59112, - [SMALL_STATE(1030)] = 59154, - [SMALL_STATE(1031)] = 59194, - [SMALL_STATE(1032)] = 59234, - [SMALL_STATE(1033)] = 59310, - [SMALL_STATE(1034)] = 59352, - [SMALL_STATE(1035)] = 59392, - [SMALL_STATE(1036)] = 59432, - [SMALL_STATE(1037)] = 59508, - [SMALL_STATE(1038)] = 59550, - [SMALL_STATE(1039)] = 59590, - [SMALL_STATE(1040)] = 59666, - [SMALL_STATE(1041)] = 59708, - [SMALL_STATE(1042)] = 59784, - [SMALL_STATE(1043)] = 59860, - [SMALL_STATE(1044)] = 59902, - [SMALL_STATE(1045)] = 59978, - [SMALL_STATE(1046)] = 60054, - [SMALL_STATE(1047)] = 60094, - [SMALL_STATE(1048)] = 60134, - [SMALL_STATE(1049)] = 60210, - [SMALL_STATE(1050)] = 60252, - [SMALL_STATE(1051)] = 60294, - [SMALL_STATE(1052)] = 60336, - [SMALL_STATE(1053)] = 60378, - [SMALL_STATE(1054)] = 60418, - [SMALL_STATE(1055)] = 60460, - [SMALL_STATE(1056)] = 60502, - [SMALL_STATE(1057)] = 60542, - [SMALL_STATE(1058)] = 60584, - [SMALL_STATE(1059)] = 60624, - [SMALL_STATE(1060)] = 60664, - [SMALL_STATE(1061)] = 60740, - [SMALL_STATE(1062)] = 60782, - [SMALL_STATE(1063)] = 60822, - [SMALL_STATE(1064)] = 60862, - [SMALL_STATE(1065)] = 60902, - [SMALL_STATE(1066)] = 60944, - [SMALL_STATE(1067)] = 60984, - [SMALL_STATE(1068)] = 61024, - [SMALL_STATE(1069)] = 61064, - [SMALL_STATE(1070)] = 61140, - [SMALL_STATE(1071)] = 61180, - [SMALL_STATE(1072)] = 61220, - [SMALL_STATE(1073)] = 61296, - [SMALL_STATE(1074)] = 61372, - [SMALL_STATE(1075)] = 61448, - [SMALL_STATE(1076)] = 61524, - [SMALL_STATE(1077)] = 61600, - [SMALL_STATE(1078)] = 61640, - [SMALL_STATE(1079)] = 61680, - [SMALL_STATE(1080)] = 61756, - [SMALL_STATE(1081)] = 61796, - [SMALL_STATE(1082)] = 61872, - [SMALL_STATE(1083)] = 61948, - [SMALL_STATE(1084)] = 61988, - [SMALL_STATE(1085)] = 62028, - [SMALL_STATE(1086)] = 62068, - [SMALL_STATE(1087)] = 62110, - [SMALL_STATE(1088)] = 62150, - [SMALL_STATE(1089)] = 62192, - [SMALL_STATE(1090)] = 62232, - [SMALL_STATE(1091)] = 62272, - [SMALL_STATE(1092)] = 62348, - [SMALL_STATE(1093)] = 62424, - [SMALL_STATE(1094)] = 62464, - [SMALL_STATE(1095)] = 62540, - [SMALL_STATE(1096)] = 62616, - [SMALL_STATE(1097)] = 62692, - [SMALL_STATE(1098)] = 62768, - [SMALL_STATE(1099)] = 62808, - [SMALL_STATE(1100)] = 62884, - [SMALL_STATE(1101)] = 62960, - [SMALL_STATE(1102)] = 63036, - [SMALL_STATE(1103)] = 63112, - [SMALL_STATE(1104)] = 63188, - [SMALL_STATE(1105)] = 63230, - [SMALL_STATE(1106)] = 63306, - [SMALL_STATE(1107)] = 63382, - [SMALL_STATE(1108)] = 63458, - [SMALL_STATE(1109)] = 63534, - [SMALL_STATE(1110)] = 63610, - [SMALL_STATE(1111)] = 63686, - [SMALL_STATE(1112)] = 63762, - [SMALL_STATE(1113)] = 63804, - [SMALL_STATE(1114)] = 63880, - [SMALL_STATE(1115)] = 63956, - [SMALL_STATE(1116)] = 63998, - [SMALL_STATE(1117)] = 64074, - [SMALL_STATE(1118)] = 64116, - [SMALL_STATE(1119)] = 64158, - [SMALL_STATE(1120)] = 64234, - [SMALL_STATE(1121)] = 64310, - [SMALL_STATE(1122)] = 64386, - [SMALL_STATE(1123)] = 64462, - [SMALL_STATE(1124)] = 64538, - [SMALL_STATE(1125)] = 64580, - [SMALL_STATE(1126)] = 64648, - [SMALL_STATE(1127)] = 64688, - [SMALL_STATE(1128)] = 64728, - [SMALL_STATE(1129)] = 64768, - [SMALL_STATE(1130)] = 64808, - [SMALL_STATE(1131)] = 64848, - [SMALL_STATE(1132)] = 64888, - [SMALL_STATE(1133)] = 64964, - [SMALL_STATE(1134)] = 65004, - [SMALL_STATE(1135)] = 65044, - [SMALL_STATE(1136)] = 65084, - [SMALL_STATE(1137)] = 65124, - [SMALL_STATE(1138)] = 65200, - [SMALL_STATE(1139)] = 65240, - [SMALL_STATE(1140)] = 65280, - [SMALL_STATE(1141)] = 65320, - [SMALL_STATE(1142)] = 65360, - [SMALL_STATE(1143)] = 65436, - [SMALL_STATE(1144)] = 65476, - [SMALL_STATE(1145)] = 65552, - [SMALL_STATE(1146)] = 65628, - [SMALL_STATE(1147)] = 65668, - [SMALL_STATE(1148)] = 65710, - [SMALL_STATE(1149)] = 65786, - [SMALL_STATE(1150)] = 65828, - [SMALL_STATE(1151)] = 65904, - [SMALL_STATE(1152)] = 65980, - [SMALL_STATE(1153)] = 66056, - [SMALL_STATE(1154)] = 66098, - [SMALL_STATE(1155)] = 66174, - [SMALL_STATE(1156)] = 66216, - [SMALL_STATE(1157)] = 66258, - [SMALL_STATE(1158)] = 66298, - [SMALL_STATE(1159)] = 66340, - [SMALL_STATE(1160)] = 66416, - [SMALL_STATE(1161)] = 66456, - [SMALL_STATE(1162)] = 66496, - [SMALL_STATE(1163)] = 66572, - [SMALL_STATE(1164)] = 66648, - [SMALL_STATE(1165)] = 66724, - [SMALL_STATE(1166)] = 66800, - [SMALL_STATE(1167)] = 66876, - [SMALL_STATE(1168)] = 66952, - [SMALL_STATE(1169)] = 67028, - [SMALL_STATE(1170)] = 67104, - [SMALL_STATE(1171)] = 67180, - [SMALL_STATE(1172)] = 67256, - [SMALL_STATE(1173)] = 67296, - [SMALL_STATE(1174)] = 67372, - [SMALL_STATE(1175)] = 67448, - [SMALL_STATE(1176)] = 67524, - [SMALL_STATE(1177)] = 67566, - [SMALL_STATE(1178)] = 67642, - [SMALL_STATE(1179)] = 67718, - [SMALL_STATE(1180)] = 67794, - [SMALL_STATE(1181)] = 67836, - [SMALL_STATE(1182)] = 67912, - [SMALL_STATE(1183)] = 67988, - [SMALL_STATE(1184)] = 68064, - [SMALL_STATE(1185)] = 68104, - [SMALL_STATE(1186)] = 68180, - [SMALL_STATE(1187)] = 68219, - [SMALL_STATE(1188)] = 68258, - [SMALL_STATE(1189)] = 68297, - [SMALL_STATE(1190)] = 68338, - [SMALL_STATE(1191)] = 68377, - [SMALL_STATE(1192)] = 68418, - [SMALL_STATE(1193)] = 68459, - [SMALL_STATE(1194)] = 68500, - [SMALL_STATE(1195)] = 68541, - [SMALL_STATE(1196)] = 68582, - [SMALL_STATE(1197)] = 68623, - [SMALL_STATE(1198)] = 68662, - [SMALL_STATE(1199)] = 68701, - [SMALL_STATE(1200)] = 68740, - [SMALL_STATE(1201)] = 68781, - [SMALL_STATE(1202)] = 68820, - [SMALL_STATE(1203)] = 68861, - [SMALL_STATE(1204)] = 68900, - [SMALL_STATE(1205)] = 68939, - [SMALL_STATE(1206)] = 68978, - [SMALL_STATE(1207)] = 69017, - [SMALL_STATE(1208)] = 69058, - [SMALL_STATE(1209)] = 69097, - [SMALL_STATE(1210)] = 69136, - [SMALL_STATE(1211)] = 69175, - [SMALL_STATE(1212)] = 69214, - [SMALL_STATE(1213)] = 69253, - [SMALL_STATE(1214)] = 69292, - [SMALL_STATE(1215)] = 69333, - [SMALL_STATE(1216)] = 69372, - [SMALL_STATE(1217)] = 69413, - [SMALL_STATE(1218)] = 69452, - [SMALL_STATE(1219)] = 69491, - [SMALL_STATE(1220)] = 69530, - [SMALL_STATE(1221)] = 69569, - [SMALL_STATE(1222)] = 69608, - [SMALL_STATE(1223)] = 69647, - [SMALL_STATE(1224)] = 69686, - [SMALL_STATE(1225)] = 69725, - [SMALL_STATE(1226)] = 69764, - [SMALL_STATE(1227)] = 69803, - [SMALL_STATE(1228)] = 69842, - [SMALL_STATE(1229)] = 69881, - [SMALL_STATE(1230)] = 69920, - [SMALL_STATE(1231)] = 69961, - [SMALL_STATE(1232)] = 70002, - [SMALL_STATE(1233)] = 70041, - [SMALL_STATE(1234)] = 70080, - [SMALL_STATE(1235)] = 70121, - [SMALL_STATE(1236)] = 70160, - [SMALL_STATE(1237)] = 70199, - [SMALL_STATE(1238)] = 70238, - [SMALL_STATE(1239)] = 70279, - [SMALL_STATE(1240)] = 70318, - [SMALL_STATE(1241)] = 70359, - [SMALL_STATE(1242)] = 70398, - [SMALL_STATE(1243)] = 70437, - [SMALL_STATE(1244)] = 70476, - [SMALL_STATE(1245)] = 70515, - [SMALL_STATE(1246)] = 70554, - [SMALL_STATE(1247)] = 70593, - [SMALL_STATE(1248)] = 70632, - [SMALL_STATE(1249)] = 70671, - [SMALL_STATE(1250)] = 70710, - [SMALL_STATE(1251)] = 70749, - [SMALL_STATE(1252)] = 70788, - [SMALL_STATE(1253)] = 70827, - [SMALL_STATE(1254)] = 70866, - [SMALL_STATE(1255)] = 70905, - [SMALL_STATE(1256)] = 70980, - [SMALL_STATE(1257)] = 71019, - [SMALL_STATE(1258)] = 71060, - [SMALL_STATE(1259)] = 71135, - [SMALL_STATE(1260)] = 71174, - [SMALL_STATE(1261)] = 71215, - [SMALL_STATE(1262)] = 71254, - [SMALL_STATE(1263)] = 71327, - [SMALL_STATE(1264)] = 71400, - [SMALL_STATE(1265)] = 71475, - [SMALL_STATE(1266)] = 71514, - [SMALL_STATE(1267)] = 71555, - [SMALL_STATE(1268)] = 71594, - [SMALL_STATE(1269)] = 71667, - [SMALL_STATE(1270)] = 71740, - [SMALL_STATE(1271)] = 71779, - [SMALL_STATE(1272)] = 71820, - [SMALL_STATE(1273)] = 71893, - [SMALL_STATE(1274)] = 71966, - [SMALL_STATE(1275)] = 72005, - [SMALL_STATE(1276)] = 72044, - [SMALL_STATE(1277)] = 72083, - [SMALL_STATE(1278)] = 72124, - [SMALL_STATE(1279)] = 72165, - [SMALL_STATE(1280)] = 72206, - [SMALL_STATE(1281)] = 72245, - [SMALL_STATE(1282)] = 72286, - [SMALL_STATE(1283)] = 72325, - [SMALL_STATE(1284)] = 72398, - [SMALL_STATE(1285)] = 72437, - [SMALL_STATE(1286)] = 72476, - [SMALL_STATE(1287)] = 72549, - [SMALL_STATE(1288)] = 72588, - [SMALL_STATE(1289)] = 72661, - [SMALL_STATE(1290)] = 72734, - [SMALL_STATE(1291)] = 72775, - [SMALL_STATE(1292)] = 72816, - [SMALL_STATE(1293)] = 72889, - [SMALL_STATE(1294)] = 72930, - [SMALL_STATE(1295)] = 72971, - [SMALL_STATE(1296)] = 73044, - [SMALL_STATE(1297)] = 73085, - [SMALL_STATE(1298)] = 73123, - [SMALL_STATE(1299)] = 73161, - [SMALL_STATE(1300)] = 73199, - [SMALL_STATE(1301)] = 73237, - [SMALL_STATE(1302)] = 73275, - [SMALL_STATE(1303)] = 73313, - [SMALL_STATE(1304)] = 73351, - [SMALL_STATE(1305)] = 73389, - [SMALL_STATE(1306)] = 73461, - [SMALL_STATE(1307)] = 73499, - [SMALL_STATE(1308)] = 73571, - [SMALL_STATE(1309)] = 73609, - [SMALL_STATE(1310)] = 73647, - [SMALL_STATE(1311)] = 73719, - [SMALL_STATE(1312)] = 73759, - [SMALL_STATE(1313)] = 73799, - [SMALL_STATE(1314)] = 73861, - [SMALL_STATE(1315)] = 73933, - [SMALL_STATE(1316)] = 74005, - [SMALL_STATE(1317)] = 74043, - [SMALL_STATE(1318)] = 74081, - [SMALL_STATE(1319)] = 74121, - [SMALL_STATE(1320)] = 74183, - [SMALL_STATE(1321)] = 74255, - [SMALL_STATE(1322)] = 74295, - [SMALL_STATE(1323)] = 74367, - [SMALL_STATE(1324)] = 74439, - [SMALL_STATE(1325)] = 74511, - [SMALL_STATE(1326)] = 74551, - [SMALL_STATE(1327)] = 74623, - [SMALL_STATE(1328)] = 74663, - [SMALL_STATE(1329)] = 74701, - [SMALL_STATE(1330)] = 74773, - [SMALL_STATE(1331)] = 74813, - [SMALL_STATE(1332)] = 74885, - [SMALL_STATE(1333)] = 74923, - [SMALL_STATE(1334)] = 74961, - [SMALL_STATE(1335)] = 74999, - [SMALL_STATE(1336)] = 75039, - [SMALL_STATE(1337)] = 75077, - [SMALL_STATE(1338)] = 75115, - [SMALL_STATE(1339)] = 75153, - [SMALL_STATE(1340)] = 75191, - [SMALL_STATE(1341)] = 75229, - [SMALL_STATE(1342)] = 75267, - [SMALL_STATE(1343)] = 75307, - [SMALL_STATE(1344)] = 75345, - [SMALL_STATE(1345)] = 75383, - [SMALL_STATE(1346)] = 75421, - [SMALL_STATE(1347)] = 75459, - [SMALL_STATE(1348)] = 75497, - [SMALL_STATE(1349)] = 75537, - [SMALL_STATE(1350)] = 75577, - [SMALL_STATE(1351)] = 75615, - [SMALL_STATE(1352)] = 75653, - [SMALL_STATE(1353)] = 75693, - [SMALL_STATE(1354)] = 75730, - [SMALL_STATE(1355)] = 75767, - [SMALL_STATE(1356)] = 75804, - [SMALL_STATE(1357)] = 75841, - [SMALL_STATE(1358)] = 75884, - [SMALL_STATE(1359)] = 75942, - [SMALL_STATE(1360)] = 76000, - [SMALL_STATE(1361)] = 76058, - [SMALL_STATE(1362)] = 76116, - [SMALL_STATE(1363)] = 76174, - [SMALL_STATE(1364)] = 76219, - [SMALL_STATE(1365)] = 76254, - [SMALL_STATE(1366)] = 76299, - [SMALL_STATE(1367)] = 76334, - [SMALL_STATE(1368)] = 76379, - [SMALL_STATE(1369)] = 76419, - [SMALL_STATE(1370)] = 76463, - [SMALL_STATE(1371)] = 76497, - [SMALL_STATE(1372)] = 76541, - [SMALL_STATE(1373)] = 76585, - [SMALL_STATE(1374)] = 76624, - [SMALL_STATE(1375)] = 76663, - [SMALL_STATE(1376)] = 76699, - [SMALL_STATE(1377)] = 76731, - [SMALL_STATE(1378)] = 76795, - [SMALL_STATE(1379)] = 76831, - [SMALL_STATE(1380)] = 76863, - [SMALL_STATE(1381)] = 76899, - [SMALL_STATE(1382)] = 76935, - [SMALL_STATE(1383)] = 76969, - [SMALL_STATE(1384)] = 77005, - [SMALL_STATE(1385)] = 77069, - [SMALL_STATE(1386)] = 77105, - [SMALL_STATE(1387)] = 77141, - [SMALL_STATE(1388)] = 77198, - [SMALL_STATE(1389)] = 77259, - [SMALL_STATE(1390)] = 77294, - [SMALL_STATE(1391)] = 77327, - [SMALL_STATE(1392)] = 77360, - [SMALL_STATE(1393)] = 77417, - [SMALL_STATE(1394)] = 77474, - [SMALL_STATE(1395)] = 77507, - [SMALL_STATE(1396)] = 77540, - [SMALL_STATE(1397)] = 77597, - [SMALL_STATE(1398)] = 77630, - [SMALL_STATE(1399)] = 77687, - [SMALL_STATE(1400)] = 77744, - [SMALL_STATE(1401)] = 77801, - [SMALL_STATE(1402)] = 77858, - [SMALL_STATE(1403)] = 77915, - [SMALL_STATE(1404)] = 77972, - [SMALL_STATE(1405)] = 78029, - [SMALL_STATE(1406)] = 78086, - [SMALL_STATE(1407)] = 78143, - [SMALL_STATE(1408)] = 78200, - [SMALL_STATE(1409)] = 78257, - [SMALL_STATE(1410)] = 78314, - [SMALL_STATE(1411)] = 78371, - [SMALL_STATE(1412)] = 78428, - [SMALL_STATE(1413)] = 78485, - [SMALL_STATE(1414)] = 78542, - [SMALL_STATE(1415)] = 78577, - [SMALL_STATE(1416)] = 78608, - [SMALL_STATE(1417)] = 78665, - [SMALL_STATE(1418)] = 78722, - [SMALL_STATE(1419)] = 78779, - [SMALL_STATE(1420)] = 78836, - [SMALL_STATE(1421)] = 78893, - [SMALL_STATE(1422)] = 78950, - [SMALL_STATE(1423)] = 78981, - [SMALL_STATE(1424)] = 79038, - [SMALL_STATE(1425)] = 79069, - [SMALL_STATE(1426)] = 79126, - [SMALL_STATE(1427)] = 79183, - [SMALL_STATE(1428)] = 79214, - [SMALL_STATE(1429)] = 79245, - [SMALL_STATE(1430)] = 79302, - [SMALL_STATE(1431)] = 79359, - [SMALL_STATE(1432)] = 79416, - [SMALL_STATE(1433)] = 79449, - [SMALL_STATE(1434)] = 79506, - [SMALL_STATE(1435)] = 79563, - [SMALL_STATE(1436)] = 79594, - [SMALL_STATE(1437)] = 79651, - [SMALL_STATE(1438)] = 79708, - [SMALL_STATE(1439)] = 79743, - [SMALL_STATE(1440)] = 79774, - [SMALL_STATE(1441)] = 79831, - [SMALL_STATE(1442)] = 79866, - [SMALL_STATE(1443)] = 79923, - [SMALL_STATE(1444)] = 79958, - [SMALL_STATE(1445)] = 80015, - [SMALL_STATE(1446)] = 80072, - [SMALL_STATE(1447)] = 80107, - [SMALL_STATE(1448)] = 80140, - [SMALL_STATE(1449)] = 80173, - [SMALL_STATE(1450)] = 80230, - [SMALL_STATE(1451)] = 80287, - [SMALL_STATE(1452)] = 80322, - [SMALL_STATE(1453)] = 80357, - [SMALL_STATE(1454)] = 80390, - [SMALL_STATE(1455)] = 80425, - [SMALL_STATE(1456)] = 80460, - [SMALL_STATE(1457)] = 80495, - [SMALL_STATE(1458)] = 80552, - [SMALL_STATE(1459)] = 80609, - [SMALL_STATE(1460)] = 80666, - [SMALL_STATE(1461)] = 80723, - [SMALL_STATE(1462)] = 80754, - [SMALL_STATE(1463)] = 80785, - [SMALL_STATE(1464)] = 80842, - [SMALL_STATE(1465)] = 80899, - [SMALL_STATE(1466)] = 80956, - [SMALL_STATE(1467)] = 80987, - [SMALL_STATE(1468)] = 81022, - [SMALL_STATE(1469)] = 81056, - [SMALL_STATE(1470)] = 81090, - [SMALL_STATE(1471)] = 81122, - [SMALL_STATE(1472)] = 81156, - [SMALL_STATE(1473)] = 81188, - [SMALL_STATE(1474)] = 81224, - [SMALL_STATE(1475)] = 81258, - [SMALL_STATE(1476)] = 81290, - [SMALL_STATE(1477)] = 81324, - [SMALL_STATE(1478)] = 81360, - [SMALL_STATE(1479)] = 81390, - [SMALL_STATE(1480)] = 81422, - [SMALL_STATE(1481)] = 81452, - [SMALL_STATE(1482)] = 81486, - [SMALL_STATE(1483)] = 81518, - [SMALL_STATE(1484)] = 81548, - [SMALL_STATE(1485)] = 81578, - [SMALL_STATE(1486)] = 81612, - [SMALL_STATE(1487)] = 81646, - [SMALL_STATE(1488)] = 81680, - [SMALL_STATE(1489)] = 81712, - [SMALL_STATE(1490)] = 81746, - [SMALL_STATE(1491)] = 81780, - [SMALL_STATE(1492)] = 81812, - [SMALL_STATE(1493)] = 81844, - [SMALL_STATE(1494)] = 81876, - [SMALL_STATE(1495)] = 81908, - [SMALL_STATE(1496)] = 81940, - [SMALL_STATE(1497)] = 81974, - [SMALL_STATE(1498)] = 82008, - [SMALL_STATE(1499)] = 82042, - [SMALL_STATE(1500)] = 82074, - [SMALL_STATE(1501)] = 82108, - [SMALL_STATE(1502)] = 82140, - [SMALL_STATE(1503)] = 82172, - [SMALL_STATE(1504)] = 82204, - [SMALL_STATE(1505)] = 82235, - [SMALL_STATE(1506)] = 82268, - [SMALL_STATE(1507)] = 82299, - [SMALL_STATE(1508)] = 82334, - [SMALL_STATE(1509)] = 82367, - [SMALL_STATE(1510)] = 82402, - [SMALL_STATE(1511)] = 82433, - [SMALL_STATE(1512)] = 82462, - [SMALL_STATE(1513)] = 82493, - [SMALL_STATE(1514)] = 82526, - [SMALL_STATE(1515)] = 82557, - [SMALL_STATE(1516)] = 82590, - [SMALL_STATE(1517)] = 82623, - [SMALL_STATE(1518)] = 82654, - [SMALL_STATE(1519)] = 82687, - [SMALL_STATE(1520)] = 82718, - [SMALL_STATE(1521)] = 82751, - [SMALL_STATE(1522)] = 82782, - [SMALL_STATE(1523)] = 82813, - [SMALL_STATE(1524)] = 82842, - [SMALL_STATE(1525)] = 82875, - [SMALL_STATE(1526)] = 82906, - [SMALL_STATE(1527)] = 82937, - [SMALL_STATE(1528)] = 82968, - [SMALL_STATE(1529)] = 82999, - [SMALL_STATE(1530)] = 83032, - [SMALL_STATE(1531)] = 83063, - [SMALL_STATE(1532)] = 83096, - [SMALL_STATE(1533)] = 83125, - [SMALL_STATE(1534)] = 83156, - [SMALL_STATE(1535)] = 83189, - [SMALL_STATE(1536)] = 83220, - [SMALL_STATE(1537)] = 83249, - [SMALL_STATE(1538)] = 83278, - [SMALL_STATE(1539)] = 83307, - [SMALL_STATE(1540)] = 83336, - [SMALL_STATE(1541)] = 83365, - [SMALL_STATE(1542)] = 83396, - [SMALL_STATE(1543)] = 83427, - [SMALL_STATE(1544)] = 83458, - [SMALL_STATE(1545)] = 83489, - [SMALL_STATE(1546)] = 83522, - [SMALL_STATE(1547)] = 83553, - [SMALL_STATE(1548)] = 83584, - [SMALL_STATE(1549)] = 83613, - [SMALL_STATE(1550)] = 83646, - [SMALL_STATE(1551)] = 83675, - [SMALL_STATE(1552)] = 83706, - [SMALL_STATE(1553)] = 83735, - [SMALL_STATE(1554)] = 83764, - [SMALL_STATE(1555)] = 83795, - [SMALL_STATE(1556)] = 83828, - [SMALL_STATE(1557)] = 83861, - [SMALL_STATE(1558)] = 83890, - [SMALL_STATE(1559)] = 83923, - [SMALL_STATE(1560)] = 83954, - [SMALL_STATE(1561)] = 83983, - [SMALL_STATE(1562)] = 84013, - [SMALL_STATE(1563)] = 84043, - [SMALL_STATE(1564)] = 84073, - [SMALL_STATE(1565)] = 84101, - [SMALL_STATE(1566)] = 84133, - [SMALL_STATE(1567)] = 84165, - [SMALL_STATE(1568)] = 84195, - [SMALL_STATE(1569)] = 84223, - [SMALL_STATE(1570)] = 84253, - [SMALL_STATE(1571)] = 84281, - [SMALL_STATE(1572)] = 84311, - [SMALL_STATE(1573)] = 84341, - [SMALL_STATE(1574)] = 84369, - [SMALL_STATE(1575)] = 84397, - [SMALL_STATE(1576)] = 84425, - [SMALL_STATE(1577)] = 84455, - [SMALL_STATE(1578)] = 84483, - [SMALL_STATE(1579)] = 84511, - [SMALL_STATE(1580)] = 84541, - [SMALL_STATE(1581)] = 84569, - [SMALL_STATE(1582)] = 84597, - [SMALL_STATE(1583)] = 84625, - [SMALL_STATE(1584)] = 84653, - [SMALL_STATE(1585)] = 84685, - [SMALL_STATE(1586)] = 84715, - [SMALL_STATE(1587)] = 84747, - [SMALL_STATE(1588)] = 84775, - [SMALL_STATE(1589)] = 84803, - [SMALL_STATE(1590)] = 84831, - [SMALL_STATE(1591)] = 84859, - [SMALL_STATE(1592)] = 84887, - [SMALL_STATE(1593)] = 84917, - [SMALL_STATE(1594)] = 84945, - [SMALL_STATE(1595)] = 84973, - [SMALL_STATE(1596)] = 85003, - [SMALL_STATE(1597)] = 85033, - [SMALL_STATE(1598)] = 85061, - [SMALL_STATE(1599)] = 85089, - [SMALL_STATE(1600)] = 85117, - [SMALL_STATE(1601)] = 85145, - [SMALL_STATE(1602)] = 85175, - [SMALL_STATE(1603)] = 85203, - [SMALL_STATE(1604)] = 85233, - [SMALL_STATE(1605)] = 85261, - [SMALL_STATE(1606)] = 85293, - [SMALL_STATE(1607)] = 85323, - [SMALL_STATE(1608)] = 85353, - [SMALL_STATE(1609)] = 85381, - [SMALL_STATE(1610)] = 85413, - [SMALL_STATE(1611)] = 85443, - [SMALL_STATE(1612)] = 85473, - [SMALL_STATE(1613)] = 85505, - [SMALL_STATE(1614)] = 85535, - [SMALL_STATE(1615)] = 85565, - [SMALL_STATE(1616)] = 85593, - [SMALL_STATE(1617)] = 85623, - [SMALL_STATE(1618)] = 85653, - [SMALL_STATE(1619)] = 85681, - [SMALL_STATE(1620)] = 85709, - [SMALL_STATE(1621)] = 85737, - [SMALL_STATE(1622)] = 85767, - [SMALL_STATE(1623)] = 85797, - [SMALL_STATE(1624)] = 85827, - [SMALL_STATE(1625)] = 85857, - [SMALL_STATE(1626)] = 85885, - [SMALL_STATE(1627)] = 85913, - [SMALL_STATE(1628)] = 85941, - [SMALL_STATE(1629)] = 85969, - [SMALL_STATE(1630)] = 85999, - [SMALL_STATE(1631)] = 86027, - [SMALL_STATE(1632)] = 86055, - [SMALL_STATE(1633)] = 86083, - [SMALL_STATE(1634)] = 86113, - [SMALL_STATE(1635)] = 86141, - [SMALL_STATE(1636)] = 86169, - [SMALL_STATE(1637)] = 86197, - [SMALL_STATE(1638)] = 86225, - [SMALL_STATE(1639)] = 86253, - [SMALL_STATE(1640)] = 86281, - [SMALL_STATE(1641)] = 86309, - [SMALL_STATE(1642)] = 86337, - [SMALL_STATE(1643)] = 86367, - [SMALL_STATE(1644)] = 86397, - [SMALL_STATE(1645)] = 86427, - [SMALL_STATE(1646)] = 86457, - [SMALL_STATE(1647)] = 86485, - [SMALL_STATE(1648)] = 86513, - [SMALL_STATE(1649)] = 86541, - [SMALL_STATE(1650)] = 86569, - [SMALL_STATE(1651)] = 86597, - [SMALL_STATE(1652)] = 86625, - [SMALL_STATE(1653)] = 86653, - [SMALL_STATE(1654)] = 86681, - [SMALL_STATE(1655)] = 86711, - [SMALL_STATE(1656)] = 86741, - [SMALL_STATE(1657)] = 86769, - [SMALL_STATE(1658)] = 86799, - [SMALL_STATE(1659)] = 86829, - [SMALL_STATE(1660)] = 86859, - [SMALL_STATE(1661)] = 86889, - [SMALL_STATE(1662)] = 86919, - [SMALL_STATE(1663)] = 86949, - [SMALL_STATE(1664)] = 86979, - [SMALL_STATE(1665)] = 87009, - [SMALL_STATE(1666)] = 87056, - [SMALL_STATE(1667)] = 87083, - [SMALL_STATE(1668)] = 87110, - [SMALL_STATE(1669)] = 87137, - [SMALL_STATE(1670)] = 87166, - [SMALL_STATE(1671)] = 87213, - [SMALL_STATE(1672)] = 87240, - [SMALL_STATE(1673)] = 87287, - [SMALL_STATE(1674)] = 87334, - [SMALL_STATE(1675)] = 87381, - [SMALL_STATE(1676)] = 87428, - [SMALL_STATE(1677)] = 87457, - [SMALL_STATE(1678)] = 87504, - [SMALL_STATE(1679)] = 87551, - [SMALL_STATE(1680)] = 87598, - [SMALL_STATE(1681)] = 87625, - [SMALL_STATE(1682)] = 87652, - [SMALL_STATE(1683)] = 87699, - [SMALL_STATE(1684)] = 87746, - [SMALL_STATE(1685)] = 87793, - [SMALL_STATE(1686)] = 87820, - [SMALL_STATE(1687)] = 87849, - [SMALL_STATE(1688)] = 87876, - [SMALL_STATE(1689)] = 87923, - [SMALL_STATE(1690)] = 87950, - [SMALL_STATE(1691)] = 87977, - [SMALL_STATE(1692)] = 88024, - [SMALL_STATE(1693)] = 88071, - [SMALL_STATE(1694)] = 88100, - [SMALL_STATE(1695)] = 88147, - [SMALL_STATE(1696)] = 88194, - [SMALL_STATE(1697)] = 88223, - [SMALL_STATE(1698)] = 88250, - [SMALL_STATE(1699)] = 88297, - [SMALL_STATE(1700)] = 88326, - [SMALL_STATE(1701)] = 88373, - [SMALL_STATE(1702)] = 88420, - [SMALL_STATE(1703)] = 88467, - [SMALL_STATE(1704)] = 88494, - [SMALL_STATE(1705)] = 88541, - [SMALL_STATE(1706)] = 88588, - [SMALL_STATE(1707)] = 88635, - [SMALL_STATE(1708)] = 88662, - [SMALL_STATE(1709)] = 88689, - [SMALL_STATE(1710)] = 88736, - [SMALL_STATE(1711)] = 88765, - [SMALL_STATE(1712)] = 88792, - [SMALL_STATE(1713)] = 88819, - [SMALL_STATE(1714)] = 88846, - [SMALL_STATE(1715)] = 88873, - [SMALL_STATE(1716)] = 88900, - [SMALL_STATE(1717)] = 88929, - [SMALL_STATE(1718)] = 88976, - [SMALL_STATE(1719)] = 89005, - [SMALL_STATE(1720)] = 89034, - [SMALL_STATE(1721)] = 89063, - [SMALL_STATE(1722)] = 89110, - [SMALL_STATE(1723)] = 89157, - [SMALL_STATE(1724)] = 89204, - [SMALL_STATE(1725)] = 89251, - [SMALL_STATE(1726)] = 89280, - [SMALL_STATE(1727)] = 89307, - [SMALL_STATE(1728)] = 89354, - [SMALL_STATE(1729)] = 89401, - [SMALL_STATE(1730)] = 89428, - [SMALL_STATE(1731)] = 89475, - [SMALL_STATE(1732)] = 89522, - [SMALL_STATE(1733)] = 89569, - [SMALL_STATE(1734)] = 89616, - [SMALL_STATE(1735)] = 89663, - [SMALL_STATE(1736)] = 89710, - [SMALL_STATE(1737)] = 89737, - [SMALL_STATE(1738)] = 89764, - [SMALL_STATE(1739)] = 89811, - [SMALL_STATE(1740)] = 89858, - [SMALL_STATE(1741)] = 89905, - [SMALL_STATE(1742)] = 89934, - [SMALL_STATE(1743)] = 89963, - [SMALL_STATE(1744)] = 90010, - [SMALL_STATE(1745)] = 90039, - [SMALL_STATE(1746)] = 90086, - [SMALL_STATE(1747)] = 90133, - [SMALL_STATE(1748)] = 90180, - [SMALL_STATE(1749)] = 90207, - [SMALL_STATE(1750)] = 90234, - [SMALL_STATE(1751)] = 90281, - [SMALL_STATE(1752)] = 90328, - [SMALL_STATE(1753)] = 90375, - [SMALL_STATE(1754)] = 90402, - [SMALL_STATE(1755)] = 90449, - [SMALL_STATE(1756)] = 90478, - [SMALL_STATE(1757)] = 90525, - [SMALL_STATE(1758)] = 90552, - [SMALL_STATE(1759)] = 90579, - [SMALL_STATE(1760)] = 90606, - [SMALL_STATE(1761)] = 90653, - [SMALL_STATE(1762)] = 90700, - [SMALL_STATE(1763)] = 90747, - [SMALL_STATE(1764)] = 90794, - [SMALL_STATE(1765)] = 90841, - [SMALL_STATE(1766)] = 90888, - [SMALL_STATE(1767)] = 90935, - [SMALL_STATE(1768)] = 90962, - [SMALL_STATE(1769)] = 91009, - [SMALL_STATE(1770)] = 91036, - [SMALL_STATE(1771)] = 91083, - [SMALL_STATE(1772)] = 91110, - [SMALL_STATE(1773)] = 91157, - [SMALL_STATE(1774)] = 91184, - [SMALL_STATE(1775)] = 91231, - [SMALL_STATE(1776)] = 91258, - [SMALL_STATE(1777)] = 91305, - [SMALL_STATE(1778)] = 91334, - [SMALL_STATE(1779)] = 91381, - [SMALL_STATE(1780)] = 91428, - [SMALL_STATE(1781)] = 91455, - [SMALL_STATE(1782)] = 91502, - [SMALL_STATE(1783)] = 91529, - [SMALL_STATE(1784)] = 91576, - [SMALL_STATE(1785)] = 91603, - [SMALL_STATE(1786)] = 91650, - [SMALL_STATE(1787)] = 91677, - [SMALL_STATE(1788)] = 91704, - [SMALL_STATE(1789)] = 91751, - [SMALL_STATE(1790)] = 91798, - [SMALL_STATE(1791)] = 91845, - [SMALL_STATE(1792)] = 91892, - [SMALL_STATE(1793)] = 91919, - [SMALL_STATE(1794)] = 91966, - [SMALL_STATE(1795)] = 92013, - [SMALL_STATE(1796)] = 92040, - [SMALL_STATE(1797)] = 92087, - [SMALL_STATE(1798)] = 92114, - [SMALL_STATE(1799)] = 92161, - [SMALL_STATE(1800)] = 92208, - [SMALL_STATE(1801)] = 92255, - [SMALL_STATE(1802)] = 92282, - [SMALL_STATE(1803)] = 92329, - [SMALL_STATE(1804)] = 92376, - [SMALL_STATE(1805)] = 92423, - [SMALL_STATE(1806)] = 92452, - [SMALL_STATE(1807)] = 92479, - [SMALL_STATE(1808)] = 92526, - [SMALL_STATE(1809)] = 92573, - [SMALL_STATE(1810)] = 92602, - [SMALL_STATE(1811)] = 92631, - [SMALL_STATE(1812)] = 92660, - [SMALL_STATE(1813)] = 92707, - [SMALL_STATE(1814)] = 92734, - [SMALL_STATE(1815)] = 92781, - [SMALL_STATE(1816)] = 92828, - [SMALL_STATE(1817)] = 92875, - [SMALL_STATE(1818)] = 92904, - [SMALL_STATE(1819)] = 92951, - [SMALL_STATE(1820)] = 92980, - [SMALL_STATE(1821)] = 93007, - [SMALL_STATE(1822)] = 93036, - [SMALL_STATE(1823)] = 93065, - [SMALL_STATE(1824)] = 93092, - [SMALL_STATE(1825)] = 93139, - [SMALL_STATE(1826)] = 93166, - [SMALL_STATE(1827)] = 93213, - [SMALL_STATE(1828)] = 93260, - [SMALL_STATE(1829)] = 93307, - [SMALL_STATE(1830)] = 93354, - [SMALL_STATE(1831)] = 93401, - [SMALL_STATE(1832)] = 93428, - [SMALL_STATE(1833)] = 93475, - [SMALL_STATE(1834)] = 93522, - [SMALL_STATE(1835)] = 93551, - [SMALL_STATE(1836)] = 93578, - [SMALL_STATE(1837)] = 93607, - [SMALL_STATE(1838)] = 93654, - [SMALL_STATE(1839)] = 93701, - [SMALL_STATE(1840)] = 93729, - [SMALL_STATE(1841)] = 93757, - [SMALL_STATE(1842)] = 93781, - [SMALL_STATE(1843)] = 93807, - [SMALL_STATE(1844)] = 93835, - [SMALL_STATE(1845)] = 93861, - [SMALL_STATE(1846)] = 93905, - [SMALL_STATE(1847)] = 93931, - [SMALL_STATE(1848)] = 93975, - [SMALL_STATE(1849)] = 94003, - [SMALL_STATE(1850)] = 94031, - [SMALL_STATE(1851)] = 94059, - [SMALL_STATE(1852)] = 94085, - [SMALL_STATE(1853)] = 94111, - [SMALL_STATE(1854)] = 94137, - [SMALL_STATE(1855)] = 94163, - [SMALL_STATE(1856)] = 94189, - [SMALL_STATE(1857)] = 94215, - [SMALL_STATE(1858)] = 94243, - [SMALL_STATE(1859)] = 94287, - [SMALL_STATE(1860)] = 94313, - [SMALL_STATE(1861)] = 94339, - [SMALL_STATE(1862)] = 94367, - [SMALL_STATE(1863)] = 94395, - [SMALL_STATE(1864)] = 94423, - [SMALL_STATE(1865)] = 94447, - [SMALL_STATE(1866)] = 94475, - [SMALL_STATE(1867)] = 94503, - [SMALL_STATE(1868)] = 94529, - [SMALL_STATE(1869)] = 94555, - [SMALL_STATE(1870)] = 94581, - [SMALL_STATE(1871)] = 94607, - [SMALL_STATE(1872)] = 94633, - [SMALL_STATE(1873)] = 94659, - [SMALL_STATE(1874)] = 94687, - [SMALL_STATE(1875)] = 94713, - [SMALL_STATE(1876)] = 94741, - [SMALL_STATE(1877)] = 94769, - [SMALL_STATE(1878)] = 94795, - [SMALL_STATE(1879)] = 94823, - [SMALL_STATE(1880)] = 94849, - [SMALL_STATE(1881)] = 94875, - [SMALL_STATE(1882)] = 94901, - [SMALL_STATE(1883)] = 94927, - [SMALL_STATE(1884)] = 94953, - [SMALL_STATE(1885)] = 94981, - [SMALL_STATE(1886)] = 95007, - [SMALL_STATE(1887)] = 95035, - [SMALL_STATE(1888)] = 95061, - [SMALL_STATE(1889)] = 95087, - [SMALL_STATE(1890)] = 95113, - [SMALL_STATE(1891)] = 95139, - [SMALL_STATE(1892)] = 95165, - [SMALL_STATE(1893)] = 95191, - [SMALL_STATE(1894)] = 95217, - [SMALL_STATE(1895)] = 95245, - [SMALL_STATE(1896)] = 95271, - [SMALL_STATE(1897)] = 95297, - [SMALL_STATE(1898)] = 95325, - [SMALL_STATE(1899)] = 95351, - [SMALL_STATE(1900)] = 95379, - [SMALL_STATE(1901)] = 95407, - [SMALL_STATE(1902)] = 95433, - [SMALL_STATE(1903)] = 95459, - [SMALL_STATE(1904)] = 95485, - [SMALL_STATE(1905)] = 95511, - [SMALL_STATE(1906)] = 95537, - [SMALL_STATE(1907)] = 95565, - [SMALL_STATE(1908)] = 95591, - [SMALL_STATE(1909)] = 95617, - [SMALL_STATE(1910)] = 95643, - [SMALL_STATE(1911)] = 95667, - [SMALL_STATE(1912)] = 95711, - [SMALL_STATE(1913)] = 95737, - [SMALL_STATE(1914)] = 95763, - [SMALL_STATE(1915)] = 95791, - [SMALL_STATE(1916)] = 95819, - [SMALL_STATE(1917)] = 95847, - [SMALL_STATE(1918)] = 95891, - [SMALL_STATE(1919)] = 95917, - [SMALL_STATE(1920)] = 95943, - [SMALL_STATE(1921)] = 95969, - [SMALL_STATE(1922)] = 95995, - [SMALL_STATE(1923)] = 96021, - [SMALL_STATE(1924)] = 96049, - [SMALL_STATE(1925)] = 96095, - [SMALL_STATE(1926)] = 96123, - [SMALL_STATE(1927)] = 96149, - [SMALL_STATE(1928)] = 96177, - [SMALL_STATE(1929)] = 96203, - [SMALL_STATE(1930)] = 96229, - [SMALL_STATE(1931)] = 96255, - [SMALL_STATE(1932)] = 96281, - [SMALL_STATE(1933)] = 96309, - [SMALL_STATE(1934)] = 96335, - [SMALL_STATE(1935)] = 96361, - [SMALL_STATE(1936)] = 96387, - [SMALL_STATE(1937)] = 96412, - [SMALL_STATE(1938)] = 96437, - [SMALL_STATE(1939)] = 96464, - [SMALL_STATE(1940)] = 96489, - [SMALL_STATE(1941)] = 96514, - [SMALL_STATE(1942)] = 96541, - [SMALL_STATE(1943)] = 96566, - [SMALL_STATE(1944)] = 96591, - [SMALL_STATE(1945)] = 96618, - [SMALL_STATE(1946)] = 96645, - [SMALL_STATE(1947)] = 96672, - [SMALL_STATE(1948)] = 96697, - [SMALL_STATE(1949)] = 96724, - [SMALL_STATE(1950)] = 96749, - [SMALL_STATE(1951)] = 96774, - [SMALL_STATE(1952)] = 96799, - [SMALL_STATE(1953)] = 96824, - [SMALL_STATE(1954)] = 96851, - [SMALL_STATE(1955)] = 96876, - [SMALL_STATE(1956)] = 96901, - [SMALL_STATE(1957)] = 96928, - [SMALL_STATE(1958)] = 96953, - [SMALL_STATE(1959)] = 96978, - [SMALL_STATE(1960)] = 97003, - [SMALL_STATE(1961)] = 97028, - [SMALL_STATE(1962)] = 97053, - [SMALL_STATE(1963)] = 97080, - [SMALL_STATE(1964)] = 97105, - [SMALL_STATE(1965)] = 97132, - [SMALL_STATE(1966)] = 97159, - [SMALL_STATE(1967)] = 97186, - [SMALL_STATE(1968)] = 97211, - [SMALL_STATE(1969)] = 97236, - [SMALL_STATE(1970)] = 97261, - [SMALL_STATE(1971)] = 97288, - [SMALL_STATE(1972)] = 97315, - [SMALL_STATE(1973)] = 97340, - [SMALL_STATE(1974)] = 97367, - [SMALL_STATE(1975)] = 97394, - [SMALL_STATE(1976)] = 97419, - [SMALL_STATE(1977)] = 97444, - [SMALL_STATE(1978)] = 97471, - [SMALL_STATE(1979)] = 97496, - [SMALL_STATE(1980)] = 97521, - [SMALL_STATE(1981)] = 97548, - [SMALL_STATE(1982)] = 97573, - [SMALL_STATE(1983)] = 97600, - [SMALL_STATE(1984)] = 97625, - [SMALL_STATE(1985)] = 97650, - [SMALL_STATE(1986)] = 97675, - [SMALL_STATE(1987)] = 97700, - [SMALL_STATE(1988)] = 97725, - [SMALL_STATE(1989)] = 97750, - [SMALL_STATE(1990)] = 97775, - [SMALL_STATE(1991)] = 97800, - [SMALL_STATE(1992)] = 97825, - [SMALL_STATE(1993)] = 97850, - [SMALL_STATE(1994)] = 97875, - [SMALL_STATE(1995)] = 97900, - [SMALL_STATE(1996)] = 97925, - [SMALL_STATE(1997)] = 97950, - [SMALL_STATE(1998)] = 97977, - [SMALL_STATE(1999)] = 98002, - [SMALL_STATE(2000)] = 98035, - [SMALL_STATE(2001)] = 98060, - [SMALL_STATE(2002)] = 98085, - [SMALL_STATE(2003)] = 98112, - [SMALL_STATE(2004)] = 98137, - [SMALL_STATE(2005)] = 98162, - [SMALL_STATE(2006)] = 98187, - [SMALL_STATE(2007)] = 98212, - [SMALL_STATE(2008)] = 98239, - [SMALL_STATE(2009)] = 98264, - [SMALL_STATE(2010)] = 98291, - [SMALL_STATE(2011)] = 98318, - [SMALL_STATE(2012)] = 98342, - [SMALL_STATE(2013)] = 98366, - [SMALL_STATE(2014)] = 98390, - [SMALL_STATE(2015)] = 98412, - [SMALL_STATE(2016)] = 98436, - [SMALL_STATE(2017)] = 98460, - [SMALL_STATE(2018)] = 98482, - [SMALL_STATE(2019)] = 98506, - [SMALL_STATE(2020)] = 98528, - [SMALL_STATE(2021)] = 98568, - [SMALL_STATE(2022)] = 98592, - [SMALL_STATE(2023)] = 98616, - [SMALL_STATE(2024)] = 98656, - [SMALL_STATE(2025)] = 98691, - [SMALL_STATE(2026)] = 98726, - [SMALL_STATE(2027)] = 98761, - [SMALL_STATE(2028)] = 98784, - [SMALL_STATE(2029)] = 98819, - [SMALL_STATE(2030)] = 98854, - [SMALL_STATE(2031)] = 98889, - [SMALL_STATE(2032)] = 98924, - [SMALL_STATE(2033)] = 98959, - [SMALL_STATE(2034)] = 98994, - [SMALL_STATE(2035)] = 99029, - [SMALL_STATE(2036)] = 99064, - [SMALL_STATE(2037)] = 99099, - [SMALL_STATE(2038)] = 99134, - [SMALL_STATE(2039)] = 99169, - [SMALL_STATE(2040)] = 99204, - [SMALL_STATE(2041)] = 99239, - [SMALL_STATE(2042)] = 99274, - [SMALL_STATE(2043)] = 99309, - [SMALL_STATE(2044)] = 99344, - [SMALL_STATE(2045)] = 99379, - [SMALL_STATE(2046)] = 99414, - [SMALL_STATE(2047)] = 99449, - [SMALL_STATE(2048)] = 99484, - [SMALL_STATE(2049)] = 99521, - [SMALL_STATE(2050)] = 99556, - [SMALL_STATE(2051)] = 99592, - [SMALL_STATE(2052)] = 99626, - [SMALL_STATE(2053)] = 99662, - [SMALL_STATE(2054)] = 99698, - [SMALL_STATE(2055)] = 99732, - [SMALL_STATE(2056)] = 99766, - [SMALL_STATE(2057)] = 99800, - [SMALL_STATE(2058)] = 99831, - [SMALL_STATE(2059)] = 99864, - [SMALL_STATE(2060)] = 99893, - [SMALL_STATE(2061)] = 99924, - [SMALL_STATE(2062)] = 99957, - [SMALL_STATE(2063)] = 99988, - [SMALL_STATE(2064)] = 100016, - [SMALL_STATE(2065)] = 100044, - [SMALL_STATE(2066)] = 100072, - [SMALL_STATE(2067)] = 100100, - [SMALL_STATE(2068)] = 100128, - [SMALL_STATE(2069)] = 100156, - [SMALL_STATE(2070)] = 100184, - [SMALL_STATE(2071)] = 100208, - [SMALL_STATE(2072)] = 100236, - [SMALL_STATE(2073)] = 100264, - [SMALL_STATE(2074)] = 100292, - [SMALL_STATE(2075)] = 100320, - [SMALL_STATE(2076)] = 100348, - [SMALL_STATE(2077)] = 100376, - [SMALL_STATE(2078)] = 100404, - [SMALL_STATE(2079)] = 100432, - [SMALL_STATE(2080)] = 100460, - [SMALL_STATE(2081)] = 100488, - [SMALL_STATE(2082)] = 100516, - [SMALL_STATE(2083)] = 100544, - [SMALL_STATE(2084)] = 100572, - [SMALL_STATE(2085)] = 100600, - [SMALL_STATE(2086)] = 100628, - [SMALL_STATE(2087)] = 100656, - [SMALL_STATE(2088)] = 100686, - [SMALL_STATE(2089)] = 100714, - [SMALL_STATE(2090)] = 100742, - [SMALL_STATE(2091)] = 100772, - [SMALL_STATE(2092)] = 100800, - [SMALL_STATE(2093)] = 100824, - [SMALL_STATE(2094)] = 100852, - [SMALL_STATE(2095)] = 100880, - [SMALL_STATE(2096)] = 100908, - [SMALL_STATE(2097)] = 100936, - [SMALL_STATE(2098)] = 100964, - [SMALL_STATE(2099)] = 100984, - [SMALL_STATE(2100)] = 101012, - [SMALL_STATE(2101)] = 101040, - [SMALL_STATE(2102)] = 101068, - [SMALL_STATE(2103)] = 101096, - [SMALL_STATE(2104)] = 101124, - [SMALL_STATE(2105)] = 101152, - [SMALL_STATE(2106)] = 101180, - [SMALL_STATE(2107)] = 101208, - [SMALL_STATE(2108)] = 101236, - [SMALL_STATE(2109)] = 101264, - [SMALL_STATE(2110)] = 101292, - [SMALL_STATE(2111)] = 101322, - [SMALL_STATE(2112)] = 101346, - [SMALL_STATE(2113)] = 101374, - [SMALL_STATE(2114)] = 101402, - [SMALL_STATE(2115)] = 101430, - [SMALL_STATE(2116)] = 101458, - [SMALL_STATE(2117)] = 101486, - [SMALL_STATE(2118)] = 101514, - [SMALL_STATE(2119)] = 101544, - [SMALL_STATE(2120)] = 101572, - [SMALL_STATE(2121)] = 101602, - [SMALL_STATE(2122)] = 101630, - [SMALL_STATE(2123)] = 101658, - [SMALL_STATE(2124)] = 101686, - [SMALL_STATE(2125)] = 101714, - [SMALL_STATE(2126)] = 101742, - [SMALL_STATE(2127)] = 101770, - [SMALL_STATE(2128)] = 101798, - [SMALL_STATE(2129)] = 101826, - [SMALL_STATE(2130)] = 101854, - [SMALL_STATE(2131)] = 101882, - [SMALL_STATE(2132)] = 101910, - [SMALL_STATE(2133)] = 101938, - [SMALL_STATE(2134)] = 101966, - [SMALL_STATE(2135)] = 101994, - [SMALL_STATE(2136)] = 102022, - [SMALL_STATE(2137)] = 102050, - [SMALL_STATE(2138)] = 102078, - [SMALL_STATE(2139)] = 102106, - [SMALL_STATE(2140)] = 102134, - [SMALL_STATE(2141)] = 102162, - [SMALL_STATE(2142)] = 102186, - [SMALL_STATE(2143)] = 102214, - [SMALL_STATE(2144)] = 102242, - [SMALL_STATE(2145)] = 102270, - [SMALL_STATE(2146)] = 102298, - [SMALL_STATE(2147)] = 102326, - [SMALL_STATE(2148)] = 102353, - [SMALL_STATE(2149)] = 102380, - [SMALL_STATE(2150)] = 102409, - [SMALL_STATE(2151)] = 102436, - [SMALL_STATE(2152)] = 102463, - [SMALL_STATE(2153)] = 102490, - [SMALL_STATE(2154)] = 102517, - [SMALL_STATE(2155)] = 102544, - [SMALL_STATE(2156)] = 102571, - [SMALL_STATE(2157)] = 102598, - [SMALL_STATE(2158)] = 102625, - [SMALL_STATE(2159)] = 102652, - [SMALL_STATE(2160)] = 102679, - [SMALL_STATE(2161)] = 102706, - [SMALL_STATE(2162)] = 102731, - [SMALL_STATE(2163)] = 102758, - [SMALL_STATE(2164)] = 102785, - [SMALL_STATE(2165)] = 102812, - [SMALL_STATE(2166)] = 102839, - [SMALL_STATE(2167)] = 102858, - [SMALL_STATE(2168)] = 102885, - [SMALL_STATE(2169)] = 102906, - [SMALL_STATE(2170)] = 102931, - [SMALL_STATE(2171)] = 102958, - [SMALL_STATE(2172)] = 102985, - [SMALL_STATE(2173)] = 103012, - [SMALL_STATE(2174)] = 103039, - [SMALL_STATE(2175)] = 103066, - [SMALL_STATE(2176)] = 103093, - [SMALL_STATE(2177)] = 103120, - [SMALL_STATE(2178)] = 103147, - [SMALL_STATE(2179)] = 103174, - [SMALL_STATE(2180)] = 103201, - [SMALL_STATE(2181)] = 103228, - [SMALL_STATE(2182)] = 103247, - [SMALL_STATE(2183)] = 103274, - [SMALL_STATE(2184)] = 103298, - [SMALL_STATE(2185)] = 103322, - [SMALL_STATE(2186)] = 103346, - [SMALL_STATE(2187)] = 103370, - [SMALL_STATE(2188)] = 103394, - [SMALL_STATE(2189)] = 103418, - [SMALL_STATE(2190)] = 103434, - [SMALL_STATE(2191)] = 103458, - [SMALL_STATE(2192)] = 103482, - [SMALL_STATE(2193)] = 103506, - [SMALL_STATE(2194)] = 103522, - [SMALL_STATE(2195)] = 103546, - [SMALL_STATE(2196)] = 103570, - [SMALL_STATE(2197)] = 103594, - [SMALL_STATE(2198)] = 103618, - [SMALL_STATE(2199)] = 103642, - [SMALL_STATE(2200)] = 103666, - [SMALL_STATE(2201)] = 103690, - [SMALL_STATE(2202)] = 103714, - [SMALL_STATE(2203)] = 103738, - [SMALL_STATE(2204)] = 103762, - [SMALL_STATE(2205)] = 103786, - [SMALL_STATE(2206)] = 103810, - [SMALL_STATE(2207)] = 103834, - [SMALL_STATE(2208)] = 103858, - [SMALL_STATE(2209)] = 103882, - [SMALL_STATE(2210)] = 103906, - [SMALL_STATE(2211)] = 103930, - [SMALL_STATE(2212)] = 103954, - [SMALL_STATE(2213)] = 103978, - [SMALL_STATE(2214)] = 104002, - [SMALL_STATE(2215)] = 104026, - [SMALL_STATE(2216)] = 104050, - [SMALL_STATE(2217)] = 104074, - [SMALL_STATE(2218)] = 104098, - [SMALL_STATE(2219)] = 104122, - [SMALL_STATE(2220)] = 104146, - [SMALL_STATE(2221)] = 104170, - [SMALL_STATE(2222)] = 104194, - [SMALL_STATE(2223)] = 104214, - [SMALL_STATE(2224)] = 104238, - [SMALL_STATE(2225)] = 104262, - [SMALL_STATE(2226)] = 104286, - [SMALL_STATE(2227)] = 104310, - [SMALL_STATE(2228)] = 104334, - [SMALL_STATE(2229)] = 104358, - [SMALL_STATE(2230)] = 104382, - [SMALL_STATE(2231)] = 104406, - [SMALL_STATE(2232)] = 104430, - [SMALL_STATE(2233)] = 104446, - [SMALL_STATE(2234)] = 104466, - [SMALL_STATE(2235)] = 104490, - [SMALL_STATE(2236)] = 104514, - [SMALL_STATE(2237)] = 104538, - [SMALL_STATE(2238)] = 104562, - [SMALL_STATE(2239)] = 104586, - [SMALL_STATE(2240)] = 104606, - [SMALL_STATE(2241)] = 104630, - [SMALL_STATE(2242)] = 104654, - [SMALL_STATE(2243)] = 104678, - [SMALL_STATE(2244)] = 104698, - [SMALL_STATE(2245)] = 104722, - [SMALL_STATE(2246)] = 104746, - [SMALL_STATE(2247)] = 104770, - [SMALL_STATE(2248)] = 104794, - [SMALL_STATE(2249)] = 104818, - [SMALL_STATE(2250)] = 104842, - [SMALL_STATE(2251)] = 104866, - [SMALL_STATE(2252)] = 104890, - [SMALL_STATE(2253)] = 104914, - [SMALL_STATE(2254)] = 104938, - [SMALL_STATE(2255)] = 104962, - [SMALL_STATE(2256)] = 104986, - [SMALL_STATE(2257)] = 105010, - [SMALL_STATE(2258)] = 105034, - [SMALL_STATE(2259)] = 105058, - [SMALL_STATE(2260)] = 105082, - [SMALL_STATE(2261)] = 105106, - [SMALL_STATE(2262)] = 105130, - [SMALL_STATE(2263)] = 105154, - [SMALL_STATE(2264)] = 105178, - [SMALL_STATE(2265)] = 105202, - [SMALL_STATE(2266)] = 105226, - [SMALL_STATE(2267)] = 105250, - [SMALL_STATE(2268)] = 105271, - [SMALL_STATE(2269)] = 105292, - [SMALL_STATE(2270)] = 105313, - [SMALL_STATE(2271)] = 105332, - [SMALL_STATE(2272)] = 105351, - [SMALL_STATE(2273)] = 105370, - [SMALL_STATE(2274)] = 105391, - [SMALL_STATE(2275)] = 105410, - [SMALL_STATE(2276)] = 105431, - [SMALL_STATE(2277)] = 105446, - [SMALL_STATE(2278)] = 105467, - [SMALL_STATE(2279)] = 105488, - [SMALL_STATE(2280)] = 105503, - [SMALL_STATE(2281)] = 105524, - [SMALL_STATE(2282)] = 105545, - [SMALL_STATE(2283)] = 105564, - [SMALL_STATE(2284)] = 105583, - [SMALL_STATE(2285)] = 105602, - [SMALL_STATE(2286)] = 105617, - [SMALL_STATE(2287)] = 105640, - [SMALL_STATE(2288)] = 105661, - [SMALL_STATE(2289)] = 105680, - [SMALL_STATE(2290)] = 105695, - [SMALL_STATE(2291)] = 105716, - [SMALL_STATE(2292)] = 105737, - [SMALL_STATE(2293)] = 105756, - [SMALL_STATE(2294)] = 105775, - [SMALL_STATE(2295)] = 105796, - [SMALL_STATE(2296)] = 105815, - [SMALL_STATE(2297)] = 105836, - [SMALL_STATE(2298)] = 105857, - [SMALL_STATE(2299)] = 105880, - [SMALL_STATE(2300)] = 105901, - [SMALL_STATE(2301)] = 105922, - [SMALL_STATE(2302)] = 105943, - [SMALL_STATE(2303)] = 105962, - [SMALL_STATE(2304)] = 105977, - [SMALL_STATE(2305)] = 105998, - [SMALL_STATE(2306)] = 106019, - [SMALL_STATE(2307)] = 106038, - [SMALL_STATE(2308)] = 106057, - [SMALL_STATE(2309)] = 106078, - [SMALL_STATE(2310)] = 106099, - [SMALL_STATE(2311)] = 106120, - [SMALL_STATE(2312)] = 106141, - [SMALL_STATE(2313)] = 106160, - [SMALL_STATE(2314)] = 106179, - [SMALL_STATE(2315)] = 106200, - [SMALL_STATE(2316)] = 106215, - [SMALL_STATE(2317)] = 106236, - [SMALL_STATE(2318)] = 106255, - [SMALL_STATE(2319)] = 106276, - [SMALL_STATE(2320)] = 106294, - [SMALL_STATE(2321)] = 106312, - [SMALL_STATE(2322)] = 106330, - [SMALL_STATE(2323)] = 106348, - [SMALL_STATE(2324)] = 106368, - [SMALL_STATE(2325)] = 106386, - [SMALL_STATE(2326)] = 106404, - [SMALL_STATE(2327)] = 106422, - [SMALL_STATE(2328)] = 106440, - [SMALL_STATE(2329)] = 106458, - [SMALL_STATE(2330)] = 106476, - [SMALL_STATE(2331)] = 106494, - [SMALL_STATE(2332)] = 106512, - [SMALL_STATE(2333)] = 106530, - [SMALL_STATE(2334)] = 106548, - [SMALL_STATE(2335)] = 106566, - [SMALL_STATE(2336)] = 106586, - [SMALL_STATE(2337)] = 106604, - [SMALL_STATE(2338)] = 106622, - [SMALL_STATE(2339)] = 106640, - [SMALL_STATE(2340)] = 106658, - [SMALL_STATE(2341)] = 106676, - [SMALL_STATE(2342)] = 106694, - [SMALL_STATE(2343)] = 106712, - [SMALL_STATE(2344)] = 106732, - [SMALL_STATE(2345)] = 106750, - [SMALL_STATE(2346)] = 106764, - [SMALL_STATE(2347)] = 106782, - [SMALL_STATE(2348)] = 106800, - [SMALL_STATE(2349)] = 106814, - [SMALL_STATE(2350)] = 106828, - [SMALL_STATE(2351)] = 106846, - [SMALL_STATE(2352)] = 106864, - [SMALL_STATE(2353)] = 106882, - [SMALL_STATE(2354)] = 106900, - [SMALL_STATE(2355)] = 106920, - [SMALL_STATE(2356)] = 106938, - [SMALL_STATE(2357)] = 106954, - [SMALL_STATE(2358)] = 106972, - [SMALL_STATE(2359)] = 106990, - [SMALL_STATE(2360)] = 107008, - [SMALL_STATE(2361)] = 107026, - [SMALL_STATE(2362)] = 107046, - [SMALL_STATE(2363)] = 107066, - [SMALL_STATE(2364)] = 107084, - [SMALL_STATE(2365)] = 107102, - [SMALL_STATE(2366)] = 107120, - [SMALL_STATE(2367)] = 107140, - [SMALL_STATE(2368)] = 107158, - [SMALL_STATE(2369)] = 107176, - [SMALL_STATE(2370)] = 107194, - [SMALL_STATE(2371)] = 107212, - [SMALL_STATE(2372)] = 107232, - [SMALL_STATE(2373)] = 107250, - [SMALL_STATE(2374)] = 107268, - [SMALL_STATE(2375)] = 107286, - [SMALL_STATE(2376)] = 107304, - [SMALL_STATE(2377)] = 107322, - [SMALL_STATE(2378)] = 107340, - [SMALL_STATE(2379)] = 107358, - [SMALL_STATE(2380)] = 107376, - [SMALL_STATE(2381)] = 107394, - [SMALL_STATE(2382)] = 107412, - [SMALL_STATE(2383)] = 107430, - [SMALL_STATE(2384)] = 107448, - [SMALL_STATE(2385)] = 107468, - [SMALL_STATE(2386)] = 107486, - [SMALL_STATE(2387)] = 107504, - [SMALL_STATE(2388)] = 107522, - [SMALL_STATE(2389)] = 107540, - [SMALL_STATE(2390)] = 107558, - [SMALL_STATE(2391)] = 107574, - [SMALL_STATE(2392)] = 107592, - [SMALL_STATE(2393)] = 107609, - [SMALL_STATE(2394)] = 107626, - [SMALL_STATE(2395)] = 107643, - [SMALL_STATE(2396)] = 107660, - [SMALL_STATE(2397)] = 107677, - [SMALL_STATE(2398)] = 107694, - [SMALL_STATE(2399)] = 107711, - [SMALL_STATE(2400)] = 107728, - [SMALL_STATE(2401)] = 107743, - [SMALL_STATE(2402)] = 107758, - [SMALL_STATE(2403)] = 107775, - [SMALL_STATE(2404)] = 107792, - [SMALL_STATE(2405)] = 107807, - [SMALL_STATE(2406)] = 107824, - [SMALL_STATE(2407)] = 107841, - [SMALL_STATE(2408)] = 107858, - [SMALL_STATE(2409)] = 107875, - [SMALL_STATE(2410)] = 107892, - [SMALL_STATE(2411)] = 107909, - [SMALL_STATE(2412)] = 107926, - [SMALL_STATE(2413)] = 107943, - [SMALL_STATE(2414)] = 107960, - [SMALL_STATE(2415)] = 107977, - [SMALL_STATE(2416)] = 107994, - [SMALL_STATE(2417)] = 108009, - [SMALL_STATE(2418)] = 108022, - [SMALL_STATE(2419)] = 108039, - [SMALL_STATE(2420)] = 108056, - [SMALL_STATE(2421)] = 108073, - [SMALL_STATE(2422)] = 108090, - [SMALL_STATE(2423)] = 108107, - [SMALL_STATE(2424)] = 108124, - [SMALL_STATE(2425)] = 108139, - [SMALL_STATE(2426)] = 108156, - [SMALL_STATE(2427)] = 108173, - [SMALL_STATE(2428)] = 108190, - [SMALL_STATE(2429)] = 108207, - [SMALL_STATE(2430)] = 108224, - [SMALL_STATE(2431)] = 108241, - [SMALL_STATE(2432)] = 108258, - [SMALL_STATE(2433)] = 108275, - [SMALL_STATE(2434)] = 108292, - [SMALL_STATE(2435)] = 108309, - [SMALL_STATE(2436)] = 108326, - [SMALL_STATE(2437)] = 108343, - [SMALL_STATE(2438)] = 108360, - [SMALL_STATE(2439)] = 108377, - [SMALL_STATE(2440)] = 108394, - [SMALL_STATE(2441)] = 108411, - [SMALL_STATE(2442)] = 108428, - [SMALL_STATE(2443)] = 108441, - [SMALL_STATE(2444)] = 108458, - [SMALL_STATE(2445)] = 108473, - [SMALL_STATE(2446)] = 108490, - [SMALL_STATE(2447)] = 108507, - [SMALL_STATE(2448)] = 108524, - [SMALL_STATE(2449)] = 108541, - [SMALL_STATE(2450)] = 108558, - [SMALL_STATE(2451)] = 108572, - [SMALL_STATE(2452)] = 108584, - [SMALL_STATE(2453)] = 108596, - [SMALL_STATE(2454)] = 108610, - [SMALL_STATE(2455)] = 108622, - [SMALL_STATE(2456)] = 108634, - [SMALL_STATE(2457)] = 108646, - [SMALL_STATE(2458)] = 108660, - [SMALL_STATE(2459)] = 108672, - [SMALL_STATE(2460)] = 108686, - [SMALL_STATE(2461)] = 108700, - [SMALL_STATE(2462)] = 108714, - [SMALL_STATE(2463)] = 108726, - [SMALL_STATE(2464)] = 108740, - [SMALL_STATE(2465)] = 108752, - [SMALL_STATE(2466)] = 108764, - [SMALL_STATE(2467)] = 108776, - [SMALL_STATE(2468)] = 108788, - [SMALL_STATE(2469)] = 108800, - [SMALL_STATE(2470)] = 108814, - [SMALL_STATE(2471)] = 108826, - [SMALL_STATE(2472)] = 108838, - [SMALL_STATE(2473)] = 108850, - [SMALL_STATE(2474)] = 108862, - [SMALL_STATE(2475)] = 108874, - [SMALL_STATE(2476)] = 108886, - [SMALL_STATE(2477)] = 108898, - [SMALL_STATE(2478)] = 108910, - [SMALL_STATE(2479)] = 108922, - [SMALL_STATE(2480)] = 108936, - [SMALL_STATE(2481)] = 108948, - [SMALL_STATE(2482)] = 108960, - [SMALL_STATE(2483)] = 108974, - [SMALL_STATE(2484)] = 108986, - [SMALL_STATE(2485)] = 108998, - [SMALL_STATE(2486)] = 109010, - [SMALL_STATE(2487)] = 109024, - [SMALL_STATE(2488)] = 109035, - [SMALL_STATE(2489)] = 109046, - [SMALL_STATE(2490)] = 109055, - [SMALL_STATE(2491)] = 109066, - [SMALL_STATE(2492)] = 109077, - [SMALL_STATE(2493)] = 109088, - [SMALL_STATE(2494)] = 109099, - [SMALL_STATE(2495)] = 109110, - [SMALL_STATE(2496)] = 109121, - [SMALL_STATE(2497)] = 109132, - [SMALL_STATE(2498)] = 109143, - [SMALL_STATE(2499)] = 109154, - [SMALL_STATE(2500)] = 109165, - [SMALL_STATE(2501)] = 109176, - [SMALL_STATE(2502)] = 109187, - [SMALL_STATE(2503)] = 109198, - [SMALL_STATE(2504)] = 109209, - [SMALL_STATE(2505)] = 109220, - [SMALL_STATE(2506)] = 109231, - [SMALL_STATE(2507)] = 109242, - [SMALL_STATE(2508)] = 109253, - [SMALL_STATE(2509)] = 109262, - [SMALL_STATE(2510)] = 109273, - [SMALL_STATE(2511)] = 109284, - [SMALL_STATE(2512)] = 109295, - [SMALL_STATE(2513)] = 109304, - [SMALL_STATE(2514)] = 109315, - [SMALL_STATE(2515)] = 109326, - [SMALL_STATE(2516)] = 109337, - [SMALL_STATE(2517)] = 109348, - [SMALL_STATE(2518)] = 109359, - [SMALL_STATE(2519)] = 109368, - [SMALL_STATE(2520)] = 109379, - [SMALL_STATE(2521)] = 109390, - [SMALL_STATE(2522)] = 109401, - [SMALL_STATE(2523)] = 109412, - [SMALL_STATE(2524)] = 109423, - [SMALL_STATE(2525)] = 109434, - [SMALL_STATE(2526)] = 109445, - [SMALL_STATE(2527)] = 109456, - [SMALL_STATE(2528)] = 109467, - [SMALL_STATE(2529)] = 109476, - [SMALL_STATE(2530)] = 109487, - [SMALL_STATE(2531)] = 109498, - [SMALL_STATE(2532)] = 109509, - [SMALL_STATE(2533)] = 109518, - [SMALL_STATE(2534)] = 109529, - [SMALL_STATE(2535)] = 109540, - [SMALL_STATE(2536)] = 109551, - [SMALL_STATE(2537)] = 109562, - [SMALL_STATE(2538)] = 109573, - [SMALL_STATE(2539)] = 109584, - [SMALL_STATE(2540)] = 109595, - [SMALL_STATE(2541)] = 109606, - [SMALL_STATE(2542)] = 109617, - [SMALL_STATE(2543)] = 109628, - [SMALL_STATE(2544)] = 109639, - [SMALL_STATE(2545)] = 109650, - [SMALL_STATE(2546)] = 109661, - [SMALL_STATE(2547)] = 109672, - [SMALL_STATE(2548)] = 109683, - [SMALL_STATE(2549)] = 109692, - [SMALL_STATE(2550)] = 109703, - [SMALL_STATE(2551)] = 109712, - [SMALL_STATE(2552)] = 109723, - [SMALL_STATE(2553)] = 109734, - [SMALL_STATE(2554)] = 109745, - [SMALL_STATE(2555)] = 109756, - [SMALL_STATE(2556)] = 109765, - [SMALL_STATE(2557)] = 109776, - [SMALL_STATE(2558)] = 109785, - [SMALL_STATE(2559)] = 109796, - [SMALL_STATE(2560)] = 109807, - [SMALL_STATE(2561)] = 109818, - [SMALL_STATE(2562)] = 109829, - [SMALL_STATE(2563)] = 109838, - [SMALL_STATE(2564)] = 109849, - [SMALL_STATE(2565)] = 109858, - [SMALL_STATE(2566)] = 109869, - [SMALL_STATE(2567)] = 109880, - [SMALL_STATE(2568)] = 109891, - [SMALL_STATE(2569)] = 109902, - [SMALL_STATE(2570)] = 109911, - [SMALL_STATE(2571)] = 109922, - [SMALL_STATE(2572)] = 109931, - [SMALL_STATE(2573)] = 109942, - [SMALL_STATE(2574)] = 109953, - [SMALL_STATE(2575)] = 109964, - [SMALL_STATE(2576)] = 109975, - [SMALL_STATE(2577)] = 109984, - [SMALL_STATE(2578)] = 109995, - [SMALL_STATE(2579)] = 110004, - [SMALL_STATE(2580)] = 110015, - [SMALL_STATE(2581)] = 110026, - [SMALL_STATE(2582)] = 110037, - [SMALL_STATE(2583)] = 110046, - [SMALL_STATE(2584)] = 110057, - [SMALL_STATE(2585)] = 110066, - [SMALL_STATE(2586)] = 110077, - [SMALL_STATE(2587)] = 110088, - [SMALL_STATE(2588)] = 110099, - [SMALL_STATE(2589)] = 110108, - [SMALL_STATE(2590)] = 110119, - [SMALL_STATE(2591)] = 110128, - [SMALL_STATE(2592)] = 110139, - [SMALL_STATE(2593)] = 110150, - [SMALL_STATE(2594)] = 110159, - [SMALL_STATE(2595)] = 110170, - [SMALL_STATE(2596)] = 110179, - [SMALL_STATE(2597)] = 110190, - [SMALL_STATE(2598)] = 110201, - [SMALL_STATE(2599)] = 110210, - [SMALL_STATE(2600)] = 110221, - [SMALL_STATE(2601)] = 110230, - [SMALL_STATE(2602)] = 110241, - [SMALL_STATE(2603)] = 110252, - [SMALL_STATE(2604)] = 110261, - [SMALL_STATE(2605)] = 110272, - [SMALL_STATE(2606)] = 110281, - [SMALL_STATE(2607)] = 110292, - [SMALL_STATE(2608)] = 110303, - [SMALL_STATE(2609)] = 110312, - [SMALL_STATE(2610)] = 110323, - [SMALL_STATE(2611)] = 110332, - [SMALL_STATE(2612)] = 110343, - [SMALL_STATE(2613)] = 110354, - [SMALL_STATE(2614)] = 110363, - [SMALL_STATE(2615)] = 110374, - [SMALL_STATE(2616)] = 110383, - [SMALL_STATE(2617)] = 110394, - [SMALL_STATE(2618)] = 110405, - [SMALL_STATE(2619)] = 110414, - [SMALL_STATE(2620)] = 110425, - [SMALL_STATE(2621)] = 110434, - [SMALL_STATE(2622)] = 110445, - [SMALL_STATE(2623)] = 110456, - [SMALL_STATE(2624)] = 110465, - [SMALL_STATE(2625)] = 110474, - [SMALL_STATE(2626)] = 110483, - [SMALL_STATE(2627)] = 110494, - [SMALL_STATE(2628)] = 110505, - [SMALL_STATE(2629)] = 110514, - [SMALL_STATE(2630)] = 110525, - [SMALL_STATE(2631)] = 110534, - [SMALL_STATE(2632)] = 110545, - [SMALL_STATE(2633)] = 110556, - [SMALL_STATE(2634)] = 110565, - [SMALL_STATE(2635)] = 110576, - [SMALL_STATE(2636)] = 110585, - [SMALL_STATE(2637)] = 110596, - [SMALL_STATE(2638)] = 110607, - [SMALL_STATE(2639)] = 110616, - [SMALL_STATE(2640)] = 110627, - [SMALL_STATE(2641)] = 110636, - [SMALL_STATE(2642)] = 110647, - [SMALL_STATE(2643)] = 110658, - [SMALL_STATE(2644)] = 110667, - [SMALL_STATE(2645)] = 110678, - [SMALL_STATE(2646)] = 110687, - [SMALL_STATE(2647)] = 110698, - [SMALL_STATE(2648)] = 110709, - [SMALL_STATE(2649)] = 110718, - [SMALL_STATE(2650)] = 110729, - [SMALL_STATE(2651)] = 110738, - [SMALL_STATE(2652)] = 110749, - [SMALL_STATE(2653)] = 110760, - [SMALL_STATE(2654)] = 110769, - [SMALL_STATE(2655)] = 110780, - [SMALL_STATE(2656)] = 110789, - [SMALL_STATE(2657)] = 110800, - [SMALL_STATE(2658)] = 110811, - [SMALL_STATE(2659)] = 110820, - [SMALL_STATE(2660)] = 110831, - [SMALL_STATE(2661)] = 110840, - [SMALL_STATE(2662)] = 110849, - [SMALL_STATE(2663)] = 110860, - [SMALL_STATE(2664)] = 110869, - [SMALL_STATE(2665)] = 110878, - [SMALL_STATE(2666)] = 110889, - [SMALL_STATE(2667)] = 110898, - [SMALL_STATE(2668)] = 110907, - [SMALL_STATE(2669)] = 110918, - [SMALL_STATE(2670)] = 110927, - [SMALL_STATE(2671)] = 110936, - [SMALL_STATE(2672)] = 110947, - [SMALL_STATE(2673)] = 110956, - [SMALL_STATE(2674)] = 110965, - [SMALL_STATE(2675)] = 110976, - [SMALL_STATE(2676)] = 110985, - [SMALL_STATE(2677)] = 110994, - [SMALL_STATE(2678)] = 111005, - [SMALL_STATE(2679)] = 111014, - [SMALL_STATE(2680)] = 111023, - [SMALL_STATE(2681)] = 111034, - [SMALL_STATE(2682)] = 111043, - [SMALL_STATE(2683)] = 111052, - [SMALL_STATE(2684)] = 111063, - [SMALL_STATE(2685)] = 111072, - [SMALL_STATE(2686)] = 111081, - [SMALL_STATE(2687)] = 111092, - [SMALL_STATE(2688)] = 111101, - [SMALL_STATE(2689)] = 111110, - [SMALL_STATE(2690)] = 111121, - [SMALL_STATE(2691)] = 111130, - [SMALL_STATE(2692)] = 111139, - [SMALL_STATE(2693)] = 111150, - [SMALL_STATE(2694)] = 111159, - [SMALL_STATE(2695)] = 111168, - [SMALL_STATE(2696)] = 111179, - [SMALL_STATE(2697)] = 111188, - [SMALL_STATE(2698)] = 111197, - [SMALL_STATE(2699)] = 111208, - [SMALL_STATE(2700)] = 111217, - [SMALL_STATE(2701)] = 111226, - [SMALL_STATE(2702)] = 111237, - [SMALL_STATE(2703)] = 111246, - [SMALL_STATE(2704)] = 111255, - [SMALL_STATE(2705)] = 111266, - [SMALL_STATE(2706)] = 111275, - [SMALL_STATE(2707)] = 111284, - [SMALL_STATE(2708)] = 111295, - [SMALL_STATE(2709)] = 111304, - [SMALL_STATE(2710)] = 111313, - [SMALL_STATE(2711)] = 111324, - [SMALL_STATE(2712)] = 111333, - [SMALL_STATE(2713)] = 111342, - [SMALL_STATE(2714)] = 111353, - [SMALL_STATE(2715)] = 111362, - [SMALL_STATE(2716)] = 111371, - [SMALL_STATE(2717)] = 111382, - [SMALL_STATE(2718)] = 111391, - [SMALL_STATE(2719)] = 111400, - [SMALL_STATE(2720)] = 111411, - [SMALL_STATE(2721)] = 111420, - [SMALL_STATE(2722)] = 111429, - [SMALL_STATE(2723)] = 111440, - [SMALL_STATE(2724)] = 111449, - [SMALL_STATE(2725)] = 111458, - [SMALL_STATE(2726)] = 111469, - [SMALL_STATE(2727)] = 111478, - [SMALL_STATE(2728)] = 111487, - [SMALL_STATE(2729)] = 111498, - [SMALL_STATE(2730)] = 111507, - [SMALL_STATE(2731)] = 111516, - [SMALL_STATE(2732)] = 111527, - [SMALL_STATE(2733)] = 111536, - [SMALL_STATE(2734)] = 111547, - [SMALL_STATE(2735)] = 111558, - [SMALL_STATE(2736)] = 111569, - [SMALL_STATE(2737)] = 111580, - [SMALL_STATE(2738)] = 111591, - [SMALL_STATE(2739)] = 111602, - [SMALL_STATE(2740)] = 111613, - [SMALL_STATE(2741)] = 111624, - [SMALL_STATE(2742)] = 111635, - [SMALL_STATE(2743)] = 111646, - [SMALL_STATE(2744)] = 111657, - [SMALL_STATE(2745)] = 111668, - [SMALL_STATE(2746)] = 111679, - [SMALL_STATE(2747)] = 111690, - [SMALL_STATE(2748)] = 111701, - [SMALL_STATE(2749)] = 111712, - [SMALL_STATE(2750)] = 111723, - [SMALL_STATE(2751)] = 111734, - [SMALL_STATE(2752)] = 111745, - [SMALL_STATE(2753)] = 111756, - [SMALL_STATE(2754)] = 111767, - [SMALL_STATE(2755)] = 111778, - [SMALL_STATE(2756)] = 111789, - [SMALL_STATE(2757)] = 111800, - [SMALL_STATE(2758)] = 111811, - [SMALL_STATE(2759)] = 111822, - [SMALL_STATE(2760)] = 111833, - [SMALL_STATE(2761)] = 111844, - [SMALL_STATE(2762)] = 111855, - [SMALL_STATE(2763)] = 111866, - [SMALL_STATE(2764)] = 111877, - [SMALL_STATE(2765)] = 111888, - [SMALL_STATE(2766)] = 111899, - [SMALL_STATE(2767)] = 111910, - [SMALL_STATE(2768)] = 111921, - [SMALL_STATE(2769)] = 111932, - [SMALL_STATE(2770)] = 111943, - [SMALL_STATE(2771)] = 111954, - [SMALL_STATE(2772)] = 111963, - [SMALL_STATE(2773)] = 111974, - [SMALL_STATE(2774)] = 111985, - [SMALL_STATE(2775)] = 111996, - [SMALL_STATE(2776)] = 112007, - [SMALL_STATE(2777)] = 112018, - [SMALL_STATE(2778)] = 112029, - [SMALL_STATE(2779)] = 112040, - [SMALL_STATE(2780)] = 112051, - [SMALL_STATE(2781)] = 112062, - [SMALL_STATE(2782)] = 112073, - [SMALL_STATE(2783)] = 112084, - [SMALL_STATE(2784)] = 112095, - [SMALL_STATE(2785)] = 112106, - [SMALL_STATE(2786)] = 112117, - [SMALL_STATE(2787)] = 112128, - [SMALL_STATE(2788)] = 112139, - [SMALL_STATE(2789)] = 112150, - [SMALL_STATE(2790)] = 112161, - [SMALL_STATE(2791)] = 112172, - [SMALL_STATE(2792)] = 112183, - [SMALL_STATE(2793)] = 112194, - [SMALL_STATE(2794)] = 112205, - [SMALL_STATE(2795)] = 112216, - [SMALL_STATE(2796)] = 112227, - [SMALL_STATE(2797)] = 112238, - [SMALL_STATE(2798)] = 112249, - [SMALL_STATE(2799)] = 112260, - [SMALL_STATE(2800)] = 112271, - [SMALL_STATE(2801)] = 112282, - [SMALL_STATE(2802)] = 112293, - [SMALL_STATE(2803)] = 112304, - [SMALL_STATE(2804)] = 112315, - [SMALL_STATE(2805)] = 112326, - [SMALL_STATE(2806)] = 112337, - [SMALL_STATE(2807)] = 112348, - [SMALL_STATE(2808)] = 112359, - [SMALL_STATE(2809)] = 112370, - [SMALL_STATE(2810)] = 112381, - [SMALL_STATE(2811)] = 112392, - [SMALL_STATE(2812)] = 112403, - [SMALL_STATE(2813)] = 112414, - [SMALL_STATE(2814)] = 112425, - [SMALL_STATE(2815)] = 112436, - [SMALL_STATE(2816)] = 112447, - [SMALL_STATE(2817)] = 112458, - [SMALL_STATE(2818)] = 112469, - [SMALL_STATE(2819)] = 112480, - [SMALL_STATE(2820)] = 112491, - [SMALL_STATE(2821)] = 112502, - [SMALL_STATE(2822)] = 112513, - [SMALL_STATE(2823)] = 112524, - [SMALL_STATE(2824)] = 112535, - [SMALL_STATE(2825)] = 112546, - [SMALL_STATE(2826)] = 112557, - [SMALL_STATE(2827)] = 112568, - [SMALL_STATE(2828)] = 112579, - [SMALL_STATE(2829)] = 112590, - [SMALL_STATE(2830)] = 112601, - [SMALL_STATE(2831)] = 112612, - [SMALL_STATE(2832)] = 112623, - [SMALL_STATE(2833)] = 112634, - [SMALL_STATE(2834)] = 112645, - [SMALL_STATE(2835)] = 112656, - [SMALL_STATE(2836)] = 112667, - [SMALL_STATE(2837)] = 112678, - [SMALL_STATE(2838)] = 112689, - [SMALL_STATE(2839)] = 112700, - [SMALL_STATE(2840)] = 112711, - [SMALL_STATE(2841)] = 112722, - [SMALL_STATE(2842)] = 112733, - [SMALL_STATE(2843)] = 112744, - [SMALL_STATE(2844)] = 112755, - [SMALL_STATE(2845)] = 112766, - [SMALL_STATE(2846)] = 112777, - [SMALL_STATE(2847)] = 112788, - [SMALL_STATE(2848)] = 112799, - [SMALL_STATE(2849)] = 112810, - [SMALL_STATE(2850)] = 112821, - [SMALL_STATE(2851)] = 112832, - [SMALL_STATE(2852)] = 112843, - [SMALL_STATE(2853)] = 112854, - [SMALL_STATE(2854)] = 112865, - [SMALL_STATE(2855)] = 112876, - [SMALL_STATE(2856)] = 112887, - [SMALL_STATE(2857)] = 112898, - [SMALL_STATE(2858)] = 112909, - [SMALL_STATE(2859)] = 112920, - [SMALL_STATE(2860)] = 112931, - [SMALL_STATE(2861)] = 112942, - [SMALL_STATE(2862)] = 112953, - [SMALL_STATE(2863)] = 112964, - [SMALL_STATE(2864)] = 112975, - [SMALL_STATE(2865)] = 112986, - [SMALL_STATE(2866)] = 112997, - [SMALL_STATE(2867)] = 113008, - [SMALL_STATE(2868)] = 113019, - [SMALL_STATE(2869)] = 113030, - [SMALL_STATE(2870)] = 113041, - [SMALL_STATE(2871)] = 113052, - [SMALL_STATE(2872)] = 113063, - [SMALL_STATE(2873)] = 113074, - [SMALL_STATE(2874)] = 113085, - [SMALL_STATE(2875)] = 113096, - [SMALL_STATE(2876)] = 113107, - [SMALL_STATE(2877)] = 113118, - [SMALL_STATE(2878)] = 113129, - [SMALL_STATE(2879)] = 113140, - [SMALL_STATE(2880)] = 113151, - [SMALL_STATE(2881)] = 113162, - [SMALL_STATE(2882)] = 113173, - [SMALL_STATE(2883)] = 113184, - [SMALL_STATE(2884)] = 113195, - [SMALL_STATE(2885)] = 113206, - [SMALL_STATE(2886)] = 113217, - [SMALL_STATE(2887)] = 113228, - [SMALL_STATE(2888)] = 113239, - [SMALL_STATE(2889)] = 113250, - [SMALL_STATE(2890)] = 113261, - [SMALL_STATE(2891)] = 113272, - [SMALL_STATE(2892)] = 113283, - [SMALL_STATE(2893)] = 113294, - [SMALL_STATE(2894)] = 113305, - [SMALL_STATE(2895)] = 113316, - [SMALL_STATE(2896)] = 113327, - [SMALL_STATE(2897)] = 113338, - [SMALL_STATE(2898)] = 113349, - [SMALL_STATE(2899)] = 113360, - [SMALL_STATE(2900)] = 113371, - [SMALL_STATE(2901)] = 113382, - [SMALL_STATE(2902)] = 113393, - [SMALL_STATE(2903)] = 113404, - [SMALL_STATE(2904)] = 113415, - [SMALL_STATE(2905)] = 113426, - [SMALL_STATE(2906)] = 113437, - [SMALL_STATE(2907)] = 113448, - [SMALL_STATE(2908)] = 113459, - [SMALL_STATE(2909)] = 113470, - [SMALL_STATE(2910)] = 113481, - [SMALL_STATE(2911)] = 113492, - [SMALL_STATE(2912)] = 113503, - [SMALL_STATE(2913)] = 113514, - [SMALL_STATE(2914)] = 113525, - [SMALL_STATE(2915)] = 113536, - [SMALL_STATE(2916)] = 113547, - [SMALL_STATE(2917)] = 113558, - [SMALL_STATE(2918)] = 113569, - [SMALL_STATE(2919)] = 113580, - [SMALL_STATE(2920)] = 113591, + [SMALL_STATE(167)] = 0, + [SMALL_STATE(168)] = 74, + [SMALL_STATE(169)] = 148, + [SMALL_STATE(170)] = 222, + [SMALL_STATE(171)] = 285, + [SMALL_STATE(172)] = 348, + [SMALL_STATE(173)] = 408, + [SMALL_STATE(174)] = 468, + [SMALL_STATE(175)] = 528, + [SMALL_STATE(176)] = 585, + [SMALL_STATE(177)] = 642, + [SMALL_STATE(178)] = 699, + [SMALL_STATE(179)] = 794, + [SMALL_STATE(180)] = 904, + [SMALL_STATE(181)] = 1014, + [SMALL_STATE(182)] = 1108, + [SMALL_STATE(183)] = 1202, + [SMALL_STATE(184)] = 1312, + [SMALL_STATE(185)] = 1404, + [SMALL_STATE(186)] = 1496, + [SMALL_STATE(187)] = 1590, + [SMALL_STATE(188)] = 1684, + [SMALL_STATE(189)] = 1778, + [SMALL_STATE(190)] = 1888, + [SMALL_STATE(191)] = 1998, + [SMALL_STATE(192)] = 2108, + [SMALL_STATE(193)] = 2218, + [SMALL_STATE(194)] = 2328, + [SMALL_STATE(195)] = 2438, + [SMALL_STATE(196)] = 2548, + [SMALL_STATE(197)] = 2658, + [SMALL_STATE(198)] = 2768, + [SMALL_STATE(199)] = 2878, + [SMALL_STATE(200)] = 2988, + [SMALL_STATE(201)] = 3098, + [SMALL_STATE(202)] = 3208, + [SMALL_STATE(203)] = 3318, + [SMALL_STATE(204)] = 3428, + [SMALL_STATE(205)] = 3538, + [SMALL_STATE(206)] = 3648, + [SMALL_STATE(207)] = 3758, + [SMALL_STATE(208)] = 3868, + [SMALL_STATE(209)] = 3978, + [SMALL_STATE(210)] = 4088, + [SMALL_STATE(211)] = 4198, + [SMALL_STATE(212)] = 4308, + [SMALL_STATE(213)] = 4418, + [SMALL_STATE(214)] = 4528, + [SMALL_STATE(215)] = 4638, + [SMALL_STATE(216)] = 4748, + [SMALL_STATE(217)] = 4858, + [SMALL_STATE(218)] = 4968, + [SMALL_STATE(219)] = 5078, + [SMALL_STATE(220)] = 5188, + [SMALL_STATE(221)] = 5298, + [SMALL_STATE(222)] = 5408, + [SMALL_STATE(223)] = 5518, + [SMALL_STATE(224)] = 5628, + [SMALL_STATE(225)] = 5738, + [SMALL_STATE(226)] = 5848, + [SMALL_STATE(227)] = 5958, + [SMALL_STATE(228)] = 6068, + [SMALL_STATE(229)] = 6178, + [SMALL_STATE(230)] = 6288, + [SMALL_STATE(231)] = 6398, + [SMALL_STATE(232)] = 6508, + [SMALL_STATE(233)] = 6618, + [SMALL_STATE(234)] = 6728, + [SMALL_STATE(235)] = 6838, + [SMALL_STATE(236)] = 6948, + [SMALL_STATE(237)] = 7058, + [SMALL_STATE(238)] = 7168, + [SMALL_STATE(239)] = 7278, + [SMALL_STATE(240)] = 7388, + [SMALL_STATE(241)] = 7498, + [SMALL_STATE(242)] = 7608, + [SMALL_STATE(243)] = 7718, + [SMALL_STATE(244)] = 7828, + [SMALL_STATE(245)] = 7938, + [SMALL_STATE(246)] = 8048, + [SMALL_STATE(247)] = 8158, + [SMALL_STATE(248)] = 8268, + [SMALL_STATE(249)] = 8378, + [SMALL_STATE(250)] = 8488, + [SMALL_STATE(251)] = 8595, + [SMALL_STATE(252)] = 8702, + [SMALL_STATE(253)] = 8809, + [SMALL_STATE(254)] = 8916, + [SMALL_STATE(255)] = 9023, + [SMALL_STATE(256)] = 9130, + [SMALL_STATE(257)] = 9237, + [SMALL_STATE(258)] = 9344, + [SMALL_STATE(259)] = 9451, + [SMALL_STATE(260)] = 9558, + [SMALL_STATE(261)] = 9665, + [SMALL_STATE(262)] = 9772, + [SMALL_STATE(263)] = 9879, + [SMALL_STATE(264)] = 9970, + [SMALL_STATE(265)] = 10077, + [SMALL_STATE(266)] = 10170, + [SMALL_STATE(267)] = 10277, + [SMALL_STATE(268)] = 10384, + [SMALL_STATE(269)] = 10491, + [SMALL_STATE(270)] = 10584, + [SMALL_STATE(271)] = 10691, + [SMALL_STATE(272)] = 10784, + [SMALL_STATE(273)] = 10877, + [SMALL_STATE(274)] = 10984, + [SMALL_STATE(275)] = 11075, + [SMALL_STATE(276)] = 11182, + [SMALL_STATE(277)] = 11273, + [SMALL_STATE(278)] = 11366, + [SMALL_STATE(279)] = 11473, + [SMALL_STATE(280)] = 11580, + [SMALL_STATE(281)] = 11687, + [SMALL_STATE(282)] = 11794, + [SMALL_STATE(283)] = 11901, + [SMALL_STATE(284)] = 12008, + [SMALL_STATE(285)] = 12115, + [SMALL_STATE(286)] = 12222, + [SMALL_STATE(287)] = 12329, + [SMALL_STATE(288)] = 12436, + [SMALL_STATE(289)] = 12543, + [SMALL_STATE(290)] = 12650, + [SMALL_STATE(291)] = 12757, + [SMALL_STATE(292)] = 12864, + [SMALL_STATE(293)] = 12971, + [SMALL_STATE(294)] = 13078, + [SMALL_STATE(295)] = 13185, + [SMALL_STATE(296)] = 13292, + [SMALL_STATE(297)] = 13399, + [SMALL_STATE(298)] = 13506, + [SMALL_STATE(299)] = 13613, + [SMALL_STATE(300)] = 13704, + [SMALL_STATE(301)] = 13811, + [SMALL_STATE(302)] = 13902, + [SMALL_STATE(303)] = 14009, + [SMALL_STATE(304)] = 14116, + [SMALL_STATE(305)] = 14223, + [SMALL_STATE(306)] = 14330, + [SMALL_STATE(307)] = 14437, + [SMALL_STATE(308)] = 14544, + [SMALL_STATE(309)] = 14651, + [SMALL_STATE(310)] = 14758, + [SMALL_STATE(311)] = 14865, + [SMALL_STATE(312)] = 14972, + [SMALL_STATE(313)] = 15079, + [SMALL_STATE(314)] = 15186, + [SMALL_STATE(315)] = 15293, + [SMALL_STATE(316)] = 15400, + [SMALL_STATE(317)] = 15507, + [SMALL_STATE(318)] = 15600, + [SMALL_STATE(319)] = 15707, + [SMALL_STATE(320)] = 15814, + [SMALL_STATE(321)] = 15921, + [SMALL_STATE(322)] = 16028, + [SMALL_STATE(323)] = 16135, + [SMALL_STATE(324)] = 16242, + [SMALL_STATE(325)] = 16349, + [SMALL_STATE(326)] = 16456, + [SMALL_STATE(327)] = 16563, + [SMALL_STATE(328)] = 16670, + [SMALL_STATE(329)] = 16761, + [SMALL_STATE(330)] = 16868, + [SMALL_STATE(331)] = 16975, + [SMALL_STATE(332)] = 17082, + [SMALL_STATE(333)] = 17189, + [SMALL_STATE(334)] = 17280, + [SMALL_STATE(335)] = 17387, + [SMALL_STATE(336)] = 17494, + [SMALL_STATE(337)] = 17601, + [SMALL_STATE(338)] = 17708, + [SMALL_STATE(339)] = 17799, + [SMALL_STATE(340)] = 17906, + [SMALL_STATE(341)] = 18013, + [SMALL_STATE(342)] = 18120, + [SMALL_STATE(343)] = 18227, + [SMALL_STATE(344)] = 18320, + [SMALL_STATE(345)] = 18427, + [SMALL_STATE(346)] = 18534, + [SMALL_STATE(347)] = 18625, + [SMALL_STATE(348)] = 18716, + [SMALL_STATE(349)] = 18823, + [SMALL_STATE(350)] = 18916, + [SMALL_STATE(351)] = 19023, + [SMALL_STATE(352)] = 19130, + [SMALL_STATE(353)] = 19237, + [SMALL_STATE(354)] = 19344, + [SMALL_STATE(355)] = 19451, + [SMALL_STATE(356)] = 19558, + [SMALL_STATE(357)] = 19651, + [SMALL_STATE(358)] = 19758, + [SMALL_STATE(359)] = 19865, + [SMALL_STATE(360)] = 19972, + [SMALL_STATE(361)] = 20079, + [SMALL_STATE(362)] = 20186, + [SMALL_STATE(363)] = 20293, + [SMALL_STATE(364)] = 20400, + [SMALL_STATE(365)] = 20507, + [SMALL_STATE(366)] = 20614, + [SMALL_STATE(367)] = 20721, + [SMALL_STATE(368)] = 20828, + [SMALL_STATE(369)] = 20935, + [SMALL_STATE(370)] = 21042, + [SMALL_STATE(371)] = 21149, + [SMALL_STATE(372)] = 21256, + [SMALL_STATE(373)] = 21363, + [SMALL_STATE(374)] = 21470, + [SMALL_STATE(375)] = 21577, + [SMALL_STATE(376)] = 21684, + [SMALL_STATE(377)] = 21791, + [SMALL_STATE(378)] = 21898, + [SMALL_STATE(379)] = 22005, + [SMALL_STATE(380)] = 22112, + [SMALL_STATE(381)] = 22219, + [SMALL_STATE(382)] = 22326, + [SMALL_STATE(383)] = 22433, + [SMALL_STATE(384)] = 22540, + [SMALL_STATE(385)] = 22647, + [SMALL_STATE(386)] = 22754, + [SMALL_STATE(387)] = 22861, + [SMALL_STATE(388)] = 22968, + [SMALL_STATE(389)] = 23075, + [SMALL_STATE(390)] = 23182, + [SMALL_STATE(391)] = 23289, + [SMALL_STATE(392)] = 23396, + [SMALL_STATE(393)] = 23503, + [SMALL_STATE(394)] = 23610, + [SMALL_STATE(395)] = 23717, + [SMALL_STATE(396)] = 23824, + [SMALL_STATE(397)] = 23931, + [SMALL_STATE(398)] = 24038, + [SMALL_STATE(399)] = 24145, + [SMALL_STATE(400)] = 24252, + [SMALL_STATE(401)] = 24359, + [SMALL_STATE(402)] = 24466, + [SMALL_STATE(403)] = 24573, + [SMALL_STATE(404)] = 24680, + [SMALL_STATE(405)] = 24787, + [SMALL_STATE(406)] = 24894, + [SMALL_STATE(407)] = 25001, + [SMALL_STATE(408)] = 25108, + [SMALL_STATE(409)] = 25215, + [SMALL_STATE(410)] = 25322, + [SMALL_STATE(411)] = 25429, + [SMALL_STATE(412)] = 25536, + [SMALL_STATE(413)] = 25643, + [SMALL_STATE(414)] = 25750, + [SMALL_STATE(415)] = 25857, + [SMALL_STATE(416)] = 25964, + [SMALL_STATE(417)] = 26071, + [SMALL_STATE(418)] = 26178, + [SMALL_STATE(419)] = 26285, + [SMALL_STATE(420)] = 26392, + [SMALL_STATE(421)] = 26499, + [SMALL_STATE(422)] = 26606, + [SMALL_STATE(423)] = 26713, + [SMALL_STATE(424)] = 26820, + [SMALL_STATE(425)] = 26927, + [SMALL_STATE(426)] = 27034, + [SMALL_STATE(427)] = 27141, + [SMALL_STATE(428)] = 27248, + [SMALL_STATE(429)] = 27355, + [SMALL_STATE(430)] = 27462, + [SMALL_STATE(431)] = 27569, + [SMALL_STATE(432)] = 27676, + [SMALL_STATE(433)] = 27783, + [SMALL_STATE(434)] = 27890, + [SMALL_STATE(435)] = 27997, + [SMALL_STATE(436)] = 28104, + [SMALL_STATE(437)] = 28211, + [SMALL_STATE(438)] = 28318, + [SMALL_STATE(439)] = 28425, + [SMALL_STATE(440)] = 28532, + [SMALL_STATE(441)] = 28639, + [SMALL_STATE(442)] = 28746, + [SMALL_STATE(443)] = 28853, + [SMALL_STATE(444)] = 28960, + [SMALL_STATE(445)] = 29067, + [SMALL_STATE(446)] = 29174, + [SMALL_STATE(447)] = 29281, + [SMALL_STATE(448)] = 29388, + [SMALL_STATE(449)] = 29495, + [SMALL_STATE(450)] = 29602, + [SMALL_STATE(451)] = 29709, + [SMALL_STATE(452)] = 29816, + [SMALL_STATE(453)] = 29923, + [SMALL_STATE(454)] = 30030, + [SMALL_STATE(455)] = 30137, + [SMALL_STATE(456)] = 30244, + [SMALL_STATE(457)] = 30351, + [SMALL_STATE(458)] = 30458, + [SMALL_STATE(459)] = 30565, + [SMALL_STATE(460)] = 30672, + [SMALL_STATE(461)] = 30779, + [SMALL_STATE(462)] = 30886, + [SMALL_STATE(463)] = 30993, + [SMALL_STATE(464)] = 31100, + [SMALL_STATE(465)] = 31207, + [SMALL_STATE(466)] = 31314, + [SMALL_STATE(467)] = 31421, + [SMALL_STATE(468)] = 31528, + [SMALL_STATE(469)] = 31635, + [SMALL_STATE(470)] = 31742, + [SMALL_STATE(471)] = 31849, + [SMALL_STATE(472)] = 31956, + [SMALL_STATE(473)] = 32063, + [SMALL_STATE(474)] = 32170, + [SMALL_STATE(475)] = 32277, + [SMALL_STATE(476)] = 32384, + [SMALL_STATE(477)] = 32491, + [SMALL_STATE(478)] = 32598, + [SMALL_STATE(479)] = 32705, + [SMALL_STATE(480)] = 32812, + [SMALL_STATE(481)] = 32919, + [SMALL_STATE(482)] = 33026, + [SMALL_STATE(483)] = 33133, + [SMALL_STATE(484)] = 33240, + [SMALL_STATE(485)] = 33347, + [SMALL_STATE(486)] = 33454, + [SMALL_STATE(487)] = 33561, + [SMALL_STATE(488)] = 33651, + [SMALL_STATE(489)] = 33741, + [SMALL_STATE(490)] = 33831, + [SMALL_STATE(491)] = 33921, + [SMALL_STATE(492)] = 34013, + [SMALL_STATE(493)] = 34103, + [SMALL_STATE(494)] = 34193, + [SMALL_STATE(495)] = 34283, + [SMALL_STATE(496)] = 34375, + [SMALL_STATE(497)] = 34465, + [SMALL_STATE(498)] = 34555, + [SMALL_STATE(499)] = 34647, + [SMALL_STATE(500)] = 34739, + [SMALL_STATE(501)] = 34831, + [SMALL_STATE(502)] = 34921, + [SMALL_STATE(503)] = 35011, + [SMALL_STATE(504)] = 35103, + [SMALL_STATE(505)] = 35193, + [SMALL_STATE(506)] = 35283, + [SMALL_STATE(507)] = 35373, + [SMALL_STATE(508)] = 35463, + [SMALL_STATE(509)] = 35555, + [SMALL_STATE(510)] = 35647, + [SMALL_STATE(511)] = 35737, + [SMALL_STATE(512)] = 35827, + [SMALL_STATE(513)] = 35917, + [SMALL_STATE(514)] = 36006, + [SMALL_STATE(515)] = 36095, + [SMALL_STATE(516)] = 36184, + [SMALL_STATE(517)] = 36275, + [SMALL_STATE(518)] = 36364, + [SMALL_STATE(519)] = 36453, + [SMALL_STATE(520)] = 36544, + [SMALL_STATE(521)] = 36633, + [SMALL_STATE(522)] = 36722, + [SMALL_STATE(523)] = 36811, + [SMALL_STATE(524)] = 36900, + [SMALL_STATE(525)] = 36991, + [SMALL_STATE(526)] = 37080, + [SMALL_STATE(527)] = 37169, + [SMALL_STATE(528)] = 37258, + [SMALL_STATE(529)] = 37349, + [SMALL_STATE(530)] = 37438, + [SMALL_STATE(531)] = 37527, + [SMALL_STATE(532)] = 37616, + [SMALL_STATE(533)] = 37705, + [SMALL_STATE(534)] = 37796, + [SMALL_STATE(535)] = 37884, + [SMALL_STATE(536)] = 37972, + [SMALL_STATE(537)] = 38060, + [SMALL_STATE(538)] = 38148, + [SMALL_STATE(539)] = 38236, + [SMALL_STATE(540)] = 38326, + [SMALL_STATE(541)] = 38414, + [SMALL_STATE(542)] = 38502, + [SMALL_STATE(543)] = 38590, + [SMALL_STATE(544)] = 38680, + [SMALL_STATE(545)] = 38768, + [SMALL_STATE(546)] = 38856, + [SMALL_STATE(547)] = 38943, + [SMALL_STATE(548)] = 39030, + [SMALL_STATE(549)] = 39117, + [SMALL_STATE(550)] = 39204, + [SMALL_STATE(551)] = 39254, + [SMALL_STATE(552)] = 39304, + [SMALL_STATE(553)] = 39354, + [SMALL_STATE(554)] = 39406, + [SMALL_STATE(555)] = 39458, + [SMALL_STATE(556)] = 39508, + [SMALL_STATE(557)] = 39558, + [SMALL_STATE(558)] = 39608, + [SMALL_STATE(559)] = 39658, + [SMALL_STATE(560)] = 39708, + [SMALL_STATE(561)] = 39758, + [SMALL_STATE(562)] = 39808, + [SMALL_STATE(563)] = 39858, + [SMALL_STATE(564)] = 39908, + [SMALL_STATE(565)] = 39958, + [SMALL_STATE(566)] = 40008, + [SMALL_STATE(567)] = 40060, + [SMALL_STATE(568)] = 40109, + [SMALL_STATE(569)] = 40158, + [SMALL_STATE(570)] = 40207, + [SMALL_STATE(571)] = 40256, + [SMALL_STATE(572)] = 40305, + [SMALL_STATE(573)] = 40354, + [SMALL_STATE(574)] = 40403, + [SMALL_STATE(575)] = 40452, + [SMALL_STATE(576)] = 40501, + [SMALL_STATE(577)] = 40550, + [SMALL_STATE(578)] = 40599, + [SMALL_STATE(579)] = 40648, + [SMALL_STATE(580)] = 40699, + [SMALL_STATE(581)] = 40747, + [SMALL_STATE(582)] = 40797, + [SMALL_STATE(583)] = 40845, + [SMALL_STATE(584)] = 40895, + [SMALL_STATE(585)] = 40943, + [SMALL_STATE(586)] = 40991, + [SMALL_STATE(587)] = 41041, + [SMALL_STATE(588)] = 41089, + [SMALL_STATE(589)] = 41139, + [SMALL_STATE(590)] = 41187, + [SMALL_STATE(591)] = 41235, + [SMALL_STATE(592)] = 41283, + [SMALL_STATE(593)] = 41331, + [SMALL_STATE(594)] = 41379, + [SMALL_STATE(595)] = 41427, + [SMALL_STATE(596)] = 41477, + [SMALL_STATE(597)] = 41525, + [SMALL_STATE(598)] = 41573, + [SMALL_STATE(599)] = 41621, + [SMALL_STATE(600)] = 41669, + [SMALL_STATE(601)] = 41717, + [SMALL_STATE(602)] = 41765, + [SMALL_STATE(603)] = 41813, + [SMALL_STATE(604)] = 41863, + [SMALL_STATE(605)] = 41910, + [SMALL_STATE(606)] = 41957, + [SMALL_STATE(607)] = 42004, + [SMALL_STATE(608)] = 42051, + [SMALL_STATE(609)] = 42098, + [SMALL_STATE(610)] = 42145, + [SMALL_STATE(611)] = 42192, + [SMALL_STATE(612)] = 42241, + [SMALL_STATE(613)] = 42290, + [SMALL_STATE(614)] = 42339, + [SMALL_STATE(615)] = 42386, + [SMALL_STATE(616)] = 42435, + [SMALL_STATE(617)] = 42484, + [SMALL_STATE(618)] = 42531, + [SMALL_STATE(619)] = 42578, + [SMALL_STATE(620)] = 42625, + [SMALL_STATE(621)] = 42672, + [SMALL_STATE(622)] = 42719, + [SMALL_STATE(623)] = 42766, + [SMALL_STATE(624)] = 42813, + [SMALL_STATE(625)] = 42862, + [SMALL_STATE(626)] = 42911, + [SMALL_STATE(627)] = 42958, + [SMALL_STATE(628)] = 43007, + [SMALL_STATE(629)] = 43054, + [SMALL_STATE(630)] = 43101, + [SMALL_STATE(631)] = 43147, + [SMALL_STATE(632)] = 43195, + [SMALL_STATE(633)] = 43243, + [SMALL_STATE(634)] = 43289, + [SMALL_STATE(635)] = 43335, + [SMALL_STATE(636)] = 43383, + [SMALL_STATE(637)] = 43429, + [SMALL_STATE(638)] = 43477, + [SMALL_STATE(639)] = 43525, + [SMALL_STATE(640)] = 43571, + [SMALL_STATE(641)] = 43617, + [SMALL_STATE(642)] = 43663, + [SMALL_STATE(643)] = 43709, + [SMALL_STATE(644)] = 43755, + [SMALL_STATE(645)] = 43801, + [SMALL_STATE(646)] = 43847, + [SMALL_STATE(647)] = 43893, + [SMALL_STATE(648)] = 43939, + [SMALL_STATE(649)] = 43985, + [SMALL_STATE(650)] = 44031, + [SMALL_STATE(651)] = 44077, + [SMALL_STATE(652)] = 44123, + [SMALL_STATE(653)] = 44169, + [SMALL_STATE(654)] = 44215, + [SMALL_STATE(655)] = 44261, + [SMALL_STATE(656)] = 44309, + [SMALL_STATE(657)] = 44355, + [SMALL_STATE(658)] = 44401, + [SMALL_STATE(659)] = 44447, + [SMALL_STATE(660)] = 44493, + [SMALL_STATE(661)] = 44541, + [SMALL_STATE(662)] = 44587, + [SMALL_STATE(663)] = 44633, + [SMALL_STATE(664)] = 44679, + [SMALL_STATE(665)] = 44727, + [SMALL_STATE(666)] = 44773, + [SMALL_STATE(667)] = 44819, + [SMALL_STATE(668)] = 44865, + [SMALL_STATE(669)] = 44910, + [SMALL_STATE(670)] = 44955, + [SMALL_STATE(671)] = 45000, + [SMALL_STATE(672)] = 45045, + [SMALL_STATE(673)] = 45090, + [SMALL_STATE(674)] = 45135, + [SMALL_STATE(675)] = 45180, + [SMALL_STATE(676)] = 45225, + [SMALL_STATE(677)] = 45272, + [SMALL_STATE(678)] = 45317, + [SMALL_STATE(679)] = 45362, + [SMALL_STATE(680)] = 45407, + [SMALL_STATE(681)] = 45452, + [SMALL_STATE(682)] = 45497, + [SMALL_STATE(683)] = 45542, + [SMALL_STATE(684)] = 45589, + [SMALL_STATE(685)] = 45634, + [SMALL_STATE(686)] = 45681, + [SMALL_STATE(687)] = 45728, + [SMALL_STATE(688)] = 45773, + [SMALL_STATE(689)] = 45818, + [SMALL_STATE(690)] = 45863, + [SMALL_STATE(691)] = 45910, + [SMALL_STATE(692)] = 45955, + [SMALL_STATE(693)] = 46002, + [SMALL_STATE(694)] = 46047, + [SMALL_STATE(695)] = 46094, + [SMALL_STATE(696)] = 46139, + [SMALL_STATE(697)] = 46186, + [SMALL_STATE(698)] = 46231, + [SMALL_STATE(699)] = 46276, + [SMALL_STATE(700)] = 46321, + [SMALL_STATE(701)] = 46366, + [SMALL_STATE(702)] = 46411, + [SMALL_STATE(703)] = 46456, + [SMALL_STATE(704)] = 46501, + [SMALL_STATE(705)] = 46546, + [SMALL_STATE(706)] = 46591, + [SMALL_STATE(707)] = 46635, + [SMALL_STATE(708)] = 46679, + [SMALL_STATE(709)] = 46723, + [SMALL_STATE(710)] = 46767, + [SMALL_STATE(711)] = 46811, + [SMALL_STATE(712)] = 46855, + [SMALL_STATE(713)] = 46899, + [SMALL_STATE(714)] = 46943, + [SMALL_STATE(715)] = 46987, + [SMALL_STATE(716)] = 47031, + [SMALL_STATE(717)] = 47075, + [SMALL_STATE(718)] = 47121, + [SMALL_STATE(719)] = 47167, + [SMALL_STATE(720)] = 47213, + [SMALL_STATE(721)] = 47259, + [SMALL_STATE(722)] = 47303, + [SMALL_STATE(723)] = 47347, + [SMALL_STATE(724)] = 47393, + [SMALL_STATE(725)] = 47439, + [SMALL_STATE(726)] = 47483, + [SMALL_STATE(727)] = 47527, + [SMALL_STATE(728)] = 47571, + [SMALL_STATE(729)] = 47615, + [SMALL_STATE(730)] = 47659, + [SMALL_STATE(731)] = 47703, + [SMALL_STATE(732)] = 47747, + [SMALL_STATE(733)] = 47791, + [SMALL_STATE(734)] = 47835, + [SMALL_STATE(735)] = 47881, + [SMALL_STATE(736)] = 47927, + [SMALL_STATE(737)] = 47973, + [SMALL_STATE(738)] = 48019, + [SMALL_STATE(739)] = 48062, + [SMALL_STATE(740)] = 48105, + [SMALL_STATE(741)] = 48150, + [SMALL_STATE(742)] = 48195, + [SMALL_STATE(743)] = 48238, + [SMALL_STATE(744)] = 48281, + [SMALL_STATE(745)] = 48324, + [SMALL_STATE(746)] = 48369, + [SMALL_STATE(747)] = 48412, + [SMALL_STATE(748)] = 48455, + [SMALL_STATE(749)] = 48498, + [SMALL_STATE(750)] = 48543, + [SMALL_STATE(751)] = 48588, + [SMALL_STATE(752)] = 48633, + [SMALL_STATE(753)] = 48676, + [SMALL_STATE(754)] = 48721, + [SMALL_STATE(755)] = 48766, + [SMALL_STATE(756)] = 48809, + [SMALL_STATE(757)] = 48890, + [SMALL_STATE(758)] = 48935, + [SMALL_STATE(759)] = 48978, + [SMALL_STATE(760)] = 49021, + [SMALL_STATE(761)] = 49066, + [SMALL_STATE(762)] = 49109, + [SMALL_STATE(763)] = 49152, + [SMALL_STATE(764)] = 49197, + [SMALL_STATE(765)] = 49240, + [SMALL_STATE(766)] = 49285, + [SMALL_STATE(767)] = 49330, + [SMALL_STATE(768)] = 49373, + [SMALL_STATE(769)] = 49418, + [SMALL_STATE(770)] = 49463, + [SMALL_STATE(771)] = 49508, + [SMALL_STATE(772)] = 49553, + [SMALL_STATE(773)] = 49596, + [SMALL_STATE(774)] = 49639, + [SMALL_STATE(775)] = 49682, + [SMALL_STATE(776)] = 49725, + [SMALL_STATE(777)] = 49768, + [SMALL_STATE(778)] = 49813, + [SMALL_STATE(779)] = 49858, + [SMALL_STATE(780)] = 49901, + [SMALL_STATE(781)] = 49946, + [SMALL_STATE(782)] = 50026, + [SMALL_STATE(783)] = 50068, + [SMALL_STATE(784)] = 50110, + [SMALL_STATE(785)] = 50154, + [SMALL_STATE(786)] = 50198, + [SMALL_STATE(787)] = 50240, + [SMALL_STATE(788)] = 50284, + [SMALL_STATE(789)] = 50328, + [SMALL_STATE(790)] = 50370, + [SMALL_STATE(791)] = 50412, + [SMALL_STATE(792)] = 50456, + [SMALL_STATE(793)] = 50498, + [SMALL_STATE(794)] = 50540, + [SMALL_STATE(795)] = 50584, + [SMALL_STATE(796)] = 50626, + [SMALL_STATE(797)] = 50668, + [SMALL_STATE(798)] = 50710, + [SMALL_STATE(799)] = 50754, + [SMALL_STATE(800)] = 50796, + [SMALL_STATE(801)] = 50840, + [SMALL_STATE(802)] = 50884, + [SMALL_STATE(803)] = 50926, + [SMALL_STATE(804)] = 51006, + [SMALL_STATE(805)] = 51048, + [SMALL_STATE(806)] = 51090, + [SMALL_STATE(807)] = 51132, + [SMALL_STATE(808)] = 51176, + [SMALL_STATE(809)] = 51218, + [SMALL_STATE(810)] = 51262, + [SMALL_STATE(811)] = 51304, + [SMALL_STATE(812)] = 51346, + [SMALL_STATE(813)] = 51390, + [SMALL_STATE(814)] = 51434, + [SMALL_STATE(815)] = 51478, + [SMALL_STATE(816)] = 51522, + [SMALL_STATE(817)] = 51566, + [SMALL_STATE(818)] = 51610, + [SMALL_STATE(819)] = 51654, + [SMALL_STATE(820)] = 51696, + [SMALL_STATE(821)] = 51738, + [SMALL_STATE(822)] = 51782, + [SMALL_STATE(823)] = 51824, + [SMALL_STATE(824)] = 51866, + [SMALL_STATE(825)] = 51908, + [SMALL_STATE(826)] = 51952, + [SMALL_STATE(827)] = 51994, + [SMALL_STATE(828)] = 52036, + [SMALL_STATE(829)] = 52114, + [SMALL_STATE(830)] = 52156, + [SMALL_STATE(831)] = 52234, + [SMALL_STATE(832)] = 52278, + [SMALL_STATE(833)] = 52358, + [SMALL_STATE(834)] = 52402, + [SMALL_STATE(835)] = 52446, + [SMALL_STATE(836)] = 52490, + [SMALL_STATE(837)] = 52532, + [SMALL_STATE(838)] = 52574, + [SMALL_STATE(839)] = 52616, + [SMALL_STATE(840)] = 52658, + [SMALL_STATE(841)] = 52702, + [SMALL_STATE(842)] = 52744, + [SMALL_STATE(843)] = 52786, + [SMALL_STATE(844)] = 52866, + [SMALL_STATE(845)] = 52908, + [SMALL_STATE(846)] = 52950, + [SMALL_STATE(847)] = 52992, + [SMALL_STATE(848)] = 53036, + [SMALL_STATE(849)] = 53078, + [SMALL_STATE(850)] = 53122, + [SMALL_STATE(851)] = 53166, + [SMALL_STATE(852)] = 53208, + [SMALL_STATE(853)] = 53250, + [SMALL_STATE(854)] = 53292, + [SMALL_STATE(855)] = 53336, + [SMALL_STATE(856)] = 53380, + [SMALL_STATE(857)] = 53422, + [SMALL_STATE(858)] = 53466, + [SMALL_STATE(859)] = 53510, + [SMALL_STATE(860)] = 53552, + [SMALL_STATE(861)] = 53594, + [SMALL_STATE(862)] = 53636, + [SMALL_STATE(863)] = 53678, + [SMALL_STATE(864)] = 53722, + [SMALL_STATE(865)] = 53764, + [SMALL_STATE(866)] = 53806, + [SMALL_STATE(867)] = 53848, + [SMALL_STATE(868)] = 53890, + [SMALL_STATE(869)] = 53932, + [SMALL_STATE(870)] = 53976, + [SMALL_STATE(871)] = 54017, + [SMALL_STATE(872)] = 54058, + [SMALL_STATE(873)] = 54099, + [SMALL_STATE(874)] = 54142, + [SMALL_STATE(875)] = 54183, + [SMALL_STATE(876)] = 54224, + [SMALL_STATE(877)] = 54265, + [SMALL_STATE(878)] = 54306, + [SMALL_STATE(879)] = 54349, + [SMALL_STATE(880)] = 54390, + [SMALL_STATE(881)] = 54433, + [SMALL_STATE(882)] = 54476, + [SMALL_STATE(883)] = 54517, + [SMALL_STATE(884)] = 54560, + [SMALL_STATE(885)] = 54603, + [SMALL_STATE(886)] = 54644, + [SMALL_STATE(887)] = 54685, + [SMALL_STATE(888)] = 54726, + [SMALL_STATE(889)] = 54767, + [SMALL_STATE(890)] = 54808, + [SMALL_STATE(891)] = 54851, + [SMALL_STATE(892)] = 54892, + [SMALL_STATE(893)] = 54933, + [SMALL_STATE(894)] = 54974, + [SMALL_STATE(895)] = 55051, + [SMALL_STATE(896)] = 55092, + [SMALL_STATE(897)] = 55133, + [SMALL_STATE(898)] = 55174, + [SMALL_STATE(899)] = 55217, + [SMALL_STATE(900)] = 55258, + [SMALL_STATE(901)] = 55299, + [SMALL_STATE(902)] = 55340, + [SMALL_STATE(903)] = 55381, + [SMALL_STATE(904)] = 55458, + [SMALL_STATE(905)] = 55501, + [SMALL_STATE(906)] = 55544, + [SMALL_STATE(907)] = 55587, + [SMALL_STATE(908)] = 55628, + [SMALL_STATE(909)] = 55705, + [SMALL_STATE(910)] = 55748, + [SMALL_STATE(911)] = 55789, + [SMALL_STATE(912)] = 55830, + [SMALL_STATE(913)] = 55871, + [SMALL_STATE(914)] = 55912, + [SMALL_STATE(915)] = 55955, + [SMALL_STATE(916)] = 55998, + [SMALL_STATE(917)] = 56075, + [SMALL_STATE(918)] = 56116, + [SMALL_STATE(919)] = 56157, + [SMALL_STATE(920)] = 56198, + [SMALL_STATE(921)] = 56239, + [SMALL_STATE(922)] = 56282, + [SMALL_STATE(923)] = 56323, + [SMALL_STATE(924)] = 56366, + [SMALL_STATE(925)] = 56407, + [SMALL_STATE(926)] = 56448, + [SMALL_STATE(927)] = 56491, + [SMALL_STATE(928)] = 56534, + [SMALL_STATE(929)] = 56575, + [SMALL_STATE(930)] = 56616, + [SMALL_STATE(931)] = 56657, + [SMALL_STATE(932)] = 56698, + [SMALL_STATE(933)] = 56777, + [SMALL_STATE(934)] = 56818, + [SMALL_STATE(935)] = 56859, + [SMALL_STATE(936)] = 56900, + [SMALL_STATE(937)] = 56941, + [SMALL_STATE(938)] = 56982, + [SMALL_STATE(939)] = 57023, + [SMALL_STATE(940)] = 57102, + [SMALL_STATE(941)] = 57143, + [SMALL_STATE(942)] = 57186, + [SMALL_STATE(943)] = 57227, + [SMALL_STATE(944)] = 57268, + [SMALL_STATE(945)] = 57309, + [SMALL_STATE(946)] = 57352, + [SMALL_STATE(947)] = 57395, + [SMALL_STATE(948)] = 57436, + [SMALL_STATE(949)] = 57513, + [SMALL_STATE(950)] = 57556, + [SMALL_STATE(951)] = 57599, + [SMALL_STATE(952)] = 57642, + [SMALL_STATE(953)] = 57719, + [SMALL_STATE(954)] = 57760, + [SMALL_STATE(955)] = 57801, + [SMALL_STATE(956)] = 57844, + [SMALL_STATE(957)] = 57923, + [SMALL_STATE(958)] = 58000, + [SMALL_STATE(959)] = 58041, + [SMALL_STATE(960)] = 58118, + [SMALL_STATE(961)] = 58159, + [SMALL_STATE(962)] = 58200, + [SMALL_STATE(963)] = 58241, + [SMALL_STATE(964)] = 58284, + [SMALL_STATE(965)] = 58325, + [SMALL_STATE(966)] = 58366, + [SMALL_STATE(967)] = 58409, + [SMALL_STATE(968)] = 58452, + [SMALL_STATE(969)] = 58495, + [SMALL_STATE(970)] = 58538, + [SMALL_STATE(971)] = 58581, + [SMALL_STATE(972)] = 58622, + [SMALL_STATE(973)] = 58663, + [SMALL_STATE(974)] = 58706, + [SMALL_STATE(975)] = 58747, + [SMALL_STATE(976)] = 58788, + [SMALL_STATE(977)] = 58829, + [SMALL_STATE(978)] = 58870, + [SMALL_STATE(979)] = 58911, + [SMALL_STATE(980)] = 58952, + [SMALL_STATE(981)] = 58995, + [SMALL_STATE(982)] = 59038, + [SMALL_STATE(983)] = 59081, + [SMALL_STATE(984)] = 59122, + [SMALL_STATE(985)] = 59163, + [SMALL_STATE(986)] = 59204, + [SMALL_STATE(987)] = 59247, + [SMALL_STATE(988)] = 59326, + [SMALL_STATE(989)] = 59367, + [SMALL_STATE(990)] = 59409, + [SMALL_STATE(991)] = 59483, + [SMALL_STATE(992)] = 59557, + [SMALL_STATE(993)] = 59631, + [SMALL_STATE(994)] = 59705, + [SMALL_STATE(995)] = 59779, + [SMALL_STATE(996)] = 59853, + [SMALL_STATE(997)] = 59895, + [SMALL_STATE(998)] = 59969, + [SMALL_STATE(999)] = 60043, + [SMALL_STATE(1000)] = 60083, + [SMALL_STATE(1001)] = 60123, + [SMALL_STATE(1002)] = 60197, + [SMALL_STATE(1003)] = 60271, + [SMALL_STATE(1004)] = 60345, + [SMALL_STATE(1005)] = 60413, + [SMALL_STATE(1006)] = 60453, + [SMALL_STATE(1007)] = 60527, + [SMALL_STATE(1008)] = 60569, + [SMALL_STATE(1009)] = 60643, + [SMALL_STATE(1010)] = 60683, + [SMALL_STATE(1011)] = 60723, + [SMALL_STATE(1012)] = 60763, + [SMALL_STATE(1013)] = 60803, + [SMALL_STATE(1014)] = 60877, + [SMALL_STATE(1015)] = 60951, + [SMALL_STATE(1016)] = 61027, + [SMALL_STATE(1017)] = 61101, + [SMALL_STATE(1018)] = 61141, + [SMALL_STATE(1019)] = 61181, + [SMALL_STATE(1020)] = 61255, + [SMALL_STATE(1021)] = 61297, + [SMALL_STATE(1022)] = 61371, + [SMALL_STATE(1023)] = 61445, + [SMALL_STATE(1024)] = 61519, + [SMALL_STATE(1025)] = 61593, + [SMALL_STATE(1026)] = 61633, + [SMALL_STATE(1027)] = 61675, + [SMALL_STATE(1028)] = 61751, + [SMALL_STATE(1029)] = 61793, + [SMALL_STATE(1030)] = 61833, + [SMALL_STATE(1031)] = 61907, + [SMALL_STATE(1032)] = 61981, + [SMALL_STATE(1033)] = 62055, + [SMALL_STATE(1034)] = 62131, + [SMALL_STATE(1035)] = 62171, + [SMALL_STATE(1036)] = 62245, + [SMALL_STATE(1037)] = 62287, + [SMALL_STATE(1038)] = 62361, + [SMALL_STATE(1039)] = 62401, + [SMALL_STATE(1040)] = 62441, + [SMALL_STATE(1041)] = 62515, + [SMALL_STATE(1042)] = 62555, + [SMALL_STATE(1043)] = 62629, + [SMALL_STATE(1044)] = 62669, + [SMALL_STATE(1045)] = 62743, + [SMALL_STATE(1046)] = 62819, + [SMALL_STATE(1047)] = 62893, + [SMALL_STATE(1048)] = 62967, + [SMALL_STATE(1049)] = 63007, + [SMALL_STATE(1050)] = 63049, + [SMALL_STATE(1051)] = 63123, + [SMALL_STATE(1052)] = 63163, + [SMALL_STATE(1053)] = 63203, + [SMALL_STATE(1054)] = 63245, + [SMALL_STATE(1055)] = 63319, + [SMALL_STATE(1056)] = 63361, + [SMALL_STATE(1057)] = 63435, + [SMALL_STATE(1058)] = 63509, + [SMALL_STATE(1059)] = 63583, + [SMALL_STATE(1060)] = 63657, + [SMALL_STATE(1061)] = 63731, + [SMALL_STATE(1062)] = 63807, + [SMALL_STATE(1063)] = 63849, + [SMALL_STATE(1064)] = 63923, + [SMALL_STATE(1065)] = 63997, + [SMALL_STATE(1066)] = 64071, + [SMALL_STATE(1067)] = 64113, + [SMALL_STATE(1068)] = 64187, + [SMALL_STATE(1069)] = 64227, + [SMALL_STATE(1070)] = 64269, + [SMALL_STATE(1071)] = 64343, + [SMALL_STATE(1072)] = 64417, + [SMALL_STATE(1073)] = 64491, + [SMALL_STATE(1074)] = 64531, + [SMALL_STATE(1075)] = 64605, + [SMALL_STATE(1076)] = 64647, + [SMALL_STATE(1077)] = 64689, + [SMALL_STATE(1078)] = 64763, + [SMALL_STATE(1079)] = 64803, + [SMALL_STATE(1080)] = 64843, + [SMALL_STATE(1081)] = 64883, + [SMALL_STATE(1082)] = 64961, + [SMALL_STATE(1083)] = 65001, + [SMALL_STATE(1084)] = 65075, + [SMALL_STATE(1085)] = 65115, + [SMALL_STATE(1086)] = 65155, + [SMALL_STATE(1087)] = 65197, + [SMALL_STATE(1088)] = 65237, + [SMALL_STATE(1089)] = 65277, + [SMALL_STATE(1090)] = 65351, + [SMALL_STATE(1091)] = 65391, + [SMALL_STATE(1092)] = 65431, + [SMALL_STATE(1093)] = 65471, + [SMALL_STATE(1094)] = 65511, + [SMALL_STATE(1095)] = 65551, + [SMALL_STATE(1096)] = 65591, + [SMALL_STATE(1097)] = 65631, + [SMALL_STATE(1098)] = 65671, + [SMALL_STATE(1099)] = 65711, + [SMALL_STATE(1100)] = 65751, + [SMALL_STATE(1101)] = 65793, + [SMALL_STATE(1102)] = 65833, + [SMALL_STATE(1103)] = 65875, + [SMALL_STATE(1104)] = 65917, + [SMALL_STATE(1105)] = 65957, + [SMALL_STATE(1106)] = 66025, + [SMALL_STATE(1107)] = 66101, + [SMALL_STATE(1108)] = 66175, + [SMALL_STATE(1109)] = 66249, + [SMALL_STATE(1110)] = 66323, + [SMALL_STATE(1111)] = 66397, + [SMALL_STATE(1112)] = 66437, + [SMALL_STATE(1113)] = 66477, + [SMALL_STATE(1114)] = 66517, + [SMALL_STATE(1115)] = 66557, + [SMALL_STATE(1116)] = 66597, + [SMALL_STATE(1117)] = 66637, + [SMALL_STATE(1118)] = 66677, + [SMALL_STATE(1119)] = 66753, + [SMALL_STATE(1120)] = 66793, + [SMALL_STATE(1121)] = 66867, + [SMALL_STATE(1122)] = 66941, + [SMALL_STATE(1123)] = 67015, + [SMALL_STATE(1124)] = 67089, + [SMALL_STATE(1125)] = 67129, + [SMALL_STATE(1126)] = 67203, + [SMALL_STATE(1127)] = 67245, + [SMALL_STATE(1128)] = 67319, + [SMALL_STATE(1129)] = 67395, + [SMALL_STATE(1130)] = 67435, + [SMALL_STATE(1131)] = 67475, + [SMALL_STATE(1132)] = 67549, + [SMALL_STATE(1133)] = 67623, + [SMALL_STATE(1134)] = 67665, + [SMALL_STATE(1135)] = 67739, + [SMALL_STATE(1136)] = 67813, + [SMALL_STATE(1137)] = 67887, + [SMALL_STATE(1138)] = 67961, + [SMALL_STATE(1139)] = 68037, + [SMALL_STATE(1140)] = 68111, + [SMALL_STATE(1141)] = 68185, + [SMALL_STATE(1142)] = 68259, + [SMALL_STATE(1143)] = 68299, + [SMALL_STATE(1144)] = 68373, + [SMALL_STATE(1145)] = 68413, + [SMALL_STATE(1146)] = 68453, + [SMALL_STATE(1147)] = 68527, + [SMALL_STATE(1148)] = 68567, + [SMALL_STATE(1149)] = 68609, + [SMALL_STATE(1150)] = 68649, + [SMALL_STATE(1151)] = 68723, + [SMALL_STATE(1152)] = 68797, + [SMALL_STATE(1153)] = 68837, + [SMALL_STATE(1154)] = 68877, + [SMALL_STATE(1155)] = 68917, + [SMALL_STATE(1156)] = 68957, + [SMALL_STATE(1157)] = 69031, + [SMALL_STATE(1158)] = 69073, + [SMALL_STATE(1159)] = 69147, + [SMALL_STATE(1160)] = 69189, + [SMALL_STATE(1161)] = 69229, + [SMALL_STATE(1162)] = 69269, + [SMALL_STATE(1163)] = 69345, + [SMALL_STATE(1164)] = 69387, + [SMALL_STATE(1165)] = 69463, + [SMALL_STATE(1166)] = 69503, + [SMALL_STATE(1167)] = 69543, + [SMALL_STATE(1168)] = 69583, + [SMALL_STATE(1169)] = 69623, + [SMALL_STATE(1170)] = 69663, + [SMALL_STATE(1171)] = 69705, + [SMALL_STATE(1172)] = 69745, + [SMALL_STATE(1173)] = 69785, + [SMALL_STATE(1174)] = 69825, + [SMALL_STATE(1175)] = 69865, + [SMALL_STATE(1176)] = 69905, + [SMALL_STATE(1177)] = 69945, + [SMALL_STATE(1178)] = 69985, + [SMALL_STATE(1179)] = 70027, + [SMALL_STATE(1180)] = 70067, + [SMALL_STATE(1181)] = 70107, + [SMALL_STATE(1182)] = 70183, + [SMALL_STATE(1183)] = 70223, + [SMALL_STATE(1184)] = 70263, + [SMALL_STATE(1185)] = 70303, + [SMALL_STATE(1186)] = 70343, + [SMALL_STATE(1187)] = 70383, + [SMALL_STATE(1188)] = 70423, + [SMALL_STATE(1189)] = 70463, + [SMALL_STATE(1190)] = 70503, + [SMALL_STATE(1191)] = 70543, + [SMALL_STATE(1192)] = 70617, + [SMALL_STATE(1193)] = 70691, + [SMALL_STATE(1194)] = 70759, + [SMALL_STATE(1195)] = 70833, + [SMALL_STATE(1196)] = 70907, + [SMALL_STATE(1197)] = 70981, + [SMALL_STATE(1198)] = 71055, + [SMALL_STATE(1199)] = 71095, + [SMALL_STATE(1200)] = 71135, + [SMALL_STATE(1201)] = 71175, + [SMALL_STATE(1202)] = 71215, + [SMALL_STATE(1203)] = 71255, + [SMALL_STATE(1204)] = 71297, + [SMALL_STATE(1205)] = 71336, + [SMALL_STATE(1206)] = 71377, + [SMALL_STATE(1207)] = 71416, + [SMALL_STATE(1208)] = 71491, + [SMALL_STATE(1209)] = 71530, + [SMALL_STATE(1210)] = 71569, + [SMALL_STATE(1211)] = 71608, + [SMALL_STATE(1212)] = 71683, + [SMALL_STATE(1213)] = 71722, + [SMALL_STATE(1214)] = 71761, + [SMALL_STATE(1215)] = 71800, + [SMALL_STATE(1216)] = 71839, + [SMALL_STATE(1217)] = 71880, + [SMALL_STATE(1218)] = 71919, + [SMALL_STATE(1219)] = 71958, + [SMALL_STATE(1220)] = 71997, + [SMALL_STATE(1221)] = 72036, + [SMALL_STATE(1222)] = 72075, + [SMALL_STATE(1223)] = 72114, + [SMALL_STATE(1224)] = 72187, + [SMALL_STATE(1225)] = 72226, + [SMALL_STATE(1226)] = 72265, + [SMALL_STATE(1227)] = 72304, + [SMALL_STATE(1228)] = 72343, + [SMALL_STATE(1229)] = 72382, + [SMALL_STATE(1230)] = 72455, + [SMALL_STATE(1231)] = 72494, + [SMALL_STATE(1232)] = 72533, + [SMALL_STATE(1233)] = 72572, + [SMALL_STATE(1234)] = 72611, + [SMALL_STATE(1235)] = 72684, + [SMALL_STATE(1236)] = 72725, + [SMALL_STATE(1237)] = 72764, + [SMALL_STATE(1238)] = 72837, + [SMALL_STATE(1239)] = 72876, + [SMALL_STATE(1240)] = 72917, + [SMALL_STATE(1241)] = 72992, + [SMALL_STATE(1242)] = 73031, + [SMALL_STATE(1243)] = 73070, + [SMALL_STATE(1244)] = 73143, + [SMALL_STATE(1245)] = 73218, + [SMALL_STATE(1246)] = 73259, + [SMALL_STATE(1247)] = 73298, + [SMALL_STATE(1248)] = 73337, + [SMALL_STATE(1249)] = 73376, + [SMALL_STATE(1250)] = 73415, + [SMALL_STATE(1251)] = 73488, + [SMALL_STATE(1252)] = 73527, + [SMALL_STATE(1253)] = 73566, + [SMALL_STATE(1254)] = 73605, + [SMALL_STATE(1255)] = 73644, + [SMALL_STATE(1256)] = 73683, + [SMALL_STATE(1257)] = 73724, + [SMALL_STATE(1258)] = 73799, + [SMALL_STATE(1259)] = 73838, + [SMALL_STATE(1260)] = 73877, + [SMALL_STATE(1261)] = 73916, + [SMALL_STATE(1262)] = 73955, + [SMALL_STATE(1263)] = 74028, + [SMALL_STATE(1264)] = 74067, + [SMALL_STATE(1265)] = 74106, + [SMALL_STATE(1266)] = 74145, + [SMALL_STATE(1267)] = 74184, + [SMALL_STATE(1268)] = 74225, + [SMALL_STATE(1269)] = 74264, + [SMALL_STATE(1270)] = 74303, + [SMALL_STATE(1271)] = 74344, + [SMALL_STATE(1272)] = 74383, + [SMALL_STATE(1273)] = 74422, + [SMALL_STATE(1274)] = 74495, + [SMALL_STATE(1275)] = 74534, + [SMALL_STATE(1276)] = 74573, + [SMALL_STATE(1277)] = 74612, + [SMALL_STATE(1278)] = 74651, + [SMALL_STATE(1279)] = 74690, + [SMALL_STATE(1280)] = 74729, + [SMALL_STATE(1281)] = 74768, + [SMALL_STATE(1282)] = 74809, + [SMALL_STATE(1283)] = 74848, + [SMALL_STATE(1284)] = 74889, + [SMALL_STATE(1285)] = 74930, + [SMALL_STATE(1286)] = 74969, + [SMALL_STATE(1287)] = 75010, + [SMALL_STATE(1288)] = 75049, + [SMALL_STATE(1289)] = 75088, + [SMALL_STATE(1290)] = 75127, + [SMALL_STATE(1291)] = 75166, + [SMALL_STATE(1292)] = 75207, + [SMALL_STATE(1293)] = 75248, + [SMALL_STATE(1294)] = 75287, + [SMALL_STATE(1295)] = 75326, + [SMALL_STATE(1296)] = 75365, + [SMALL_STATE(1297)] = 75404, + [SMALL_STATE(1298)] = 75445, + [SMALL_STATE(1299)] = 75486, + [SMALL_STATE(1300)] = 75525, + [SMALL_STATE(1301)] = 75564, + [SMALL_STATE(1302)] = 75603, + [SMALL_STATE(1303)] = 75642, + [SMALL_STATE(1304)] = 75681, + [SMALL_STATE(1305)] = 75756, + [SMALL_STATE(1306)] = 75795, + [SMALL_STATE(1307)] = 75867, + [SMALL_STATE(1308)] = 75905, + [SMALL_STATE(1309)] = 75943, + [SMALL_STATE(1310)] = 75981, + [SMALL_STATE(1311)] = 76019, + [SMALL_STATE(1312)] = 76057, + [SMALL_STATE(1313)] = 76095, + [SMALL_STATE(1314)] = 76135, + [SMALL_STATE(1315)] = 76173, + [SMALL_STATE(1316)] = 76213, + [SMALL_STATE(1317)] = 76251, + [SMALL_STATE(1318)] = 76289, + [SMALL_STATE(1319)] = 76327, + [SMALL_STATE(1320)] = 76365, + [SMALL_STATE(1321)] = 76403, + [SMALL_STATE(1322)] = 76441, + [SMALL_STATE(1323)] = 76513, + [SMALL_STATE(1324)] = 76551, + [SMALL_STATE(1325)] = 76623, + [SMALL_STATE(1326)] = 76661, + [SMALL_STATE(1327)] = 76733, + [SMALL_STATE(1328)] = 76771, + [SMALL_STATE(1329)] = 76809, + [SMALL_STATE(1330)] = 76881, + [SMALL_STATE(1331)] = 76919, + [SMALL_STATE(1332)] = 76957, + [SMALL_STATE(1333)] = 76995, + [SMALL_STATE(1334)] = 77033, + [SMALL_STATE(1335)] = 77105, + [SMALL_STATE(1336)] = 77145, + [SMALL_STATE(1337)] = 77183, + [SMALL_STATE(1338)] = 77221, + [SMALL_STATE(1339)] = 77259, + [SMALL_STATE(1340)] = 77297, + [SMALL_STATE(1341)] = 77337, + [SMALL_STATE(1342)] = 77375, + [SMALL_STATE(1343)] = 77413, + [SMALL_STATE(1344)] = 77475, + [SMALL_STATE(1345)] = 77513, + [SMALL_STATE(1346)] = 77585, + [SMALL_STATE(1347)] = 77623, + [SMALL_STATE(1348)] = 77661, + [SMALL_STATE(1349)] = 77699, + [SMALL_STATE(1350)] = 77737, + [SMALL_STATE(1351)] = 77775, + [SMALL_STATE(1352)] = 77837, + [SMALL_STATE(1353)] = 77875, + [SMALL_STATE(1354)] = 77913, + [SMALL_STATE(1355)] = 77951, + [SMALL_STATE(1356)] = 77989, + [SMALL_STATE(1357)] = 78061, + [SMALL_STATE(1358)] = 78099, + [SMALL_STATE(1359)] = 78137, + [SMALL_STATE(1360)] = 78174, + [SMALL_STATE(1361)] = 78211, + [SMALL_STATE(1362)] = 78248, + [SMALL_STATE(1363)] = 78285, + [SMALL_STATE(1364)] = 78322, + [SMALL_STATE(1365)] = 78359, + [SMALL_STATE(1366)] = 78396, + [SMALL_STATE(1367)] = 78433, + [SMALL_STATE(1368)] = 78470, + [SMALL_STATE(1369)] = 78507, + [SMALL_STATE(1370)] = 78544, + [SMALL_STATE(1371)] = 78581, + [SMALL_STATE(1372)] = 78618, + [SMALL_STATE(1373)] = 78655, + [SMALL_STATE(1374)] = 78698, + [SMALL_STATE(1375)] = 78756, + [SMALL_STATE(1376)] = 78814, + [SMALL_STATE(1377)] = 78872, + [SMALL_STATE(1378)] = 78930, + [SMALL_STATE(1379)] = 78988, + [SMALL_STATE(1380)] = 79033, + [SMALL_STATE(1381)] = 79068, + [SMALL_STATE(1382)] = 79113, + [SMALL_STATE(1383)] = 79158, + [SMALL_STATE(1384)] = 79193, + [SMALL_STATE(1385)] = 79257, + [SMALL_STATE(1386)] = 79321, + [SMALL_STATE(1387)] = 79385, + [SMALL_STATE(1388)] = 79449, + [SMALL_STATE(1389)] = 79513, + [SMALL_STATE(1390)] = 79577, + [SMALL_STATE(1391)] = 79611, + [SMALL_STATE(1392)] = 79675, + [SMALL_STATE(1393)] = 79739, + [SMALL_STATE(1394)] = 79803, + [SMALL_STATE(1395)] = 79867, + [SMALL_STATE(1396)] = 79931, + [SMALL_STATE(1397)] = 79995, + [SMALL_STATE(1398)] = 80059, + [SMALL_STATE(1399)] = 80123, + [SMALL_STATE(1400)] = 80187, + [SMALL_STATE(1401)] = 80251, + [SMALL_STATE(1402)] = 80315, + [SMALL_STATE(1403)] = 80379, + [SMALL_STATE(1404)] = 80443, + [SMALL_STATE(1405)] = 80507, + [SMALL_STATE(1406)] = 80571, + [SMALL_STATE(1407)] = 80635, + [SMALL_STATE(1408)] = 80699, + [SMALL_STATE(1409)] = 80763, + [SMALL_STATE(1410)] = 80827, + [SMALL_STATE(1411)] = 80891, + [SMALL_STATE(1412)] = 80955, + [SMALL_STATE(1413)] = 81019, + [SMALL_STATE(1414)] = 81083, + [SMALL_STATE(1415)] = 81147, + [SMALL_STATE(1416)] = 81211, + [SMALL_STATE(1417)] = 81275, + [SMALL_STATE(1418)] = 81339, + [SMALL_STATE(1419)] = 81403, + [SMALL_STATE(1420)] = 81467, + [SMALL_STATE(1421)] = 81531, + [SMALL_STATE(1422)] = 81595, + [SMALL_STATE(1423)] = 81659, + [SMALL_STATE(1424)] = 81723, + [SMALL_STATE(1425)] = 81787, + [SMALL_STATE(1426)] = 81851, + [SMALL_STATE(1427)] = 81915, + [SMALL_STATE(1428)] = 81979, + [SMALL_STATE(1429)] = 82043, + [SMALL_STATE(1430)] = 82107, + [SMALL_STATE(1431)] = 82151, + [SMALL_STATE(1432)] = 82195, + [SMALL_STATE(1433)] = 82259, + [SMALL_STATE(1434)] = 82323, + [SMALL_STATE(1435)] = 82387, + [SMALL_STATE(1436)] = 82451, + [SMALL_STATE(1437)] = 82515, + [SMALL_STATE(1438)] = 82579, + [SMALL_STATE(1439)] = 82643, + [SMALL_STATE(1440)] = 82707, + [SMALL_STATE(1441)] = 82771, + [SMALL_STATE(1442)] = 82835, + [SMALL_STATE(1443)] = 82899, + [SMALL_STATE(1444)] = 82963, + [SMALL_STATE(1445)] = 83007, + [SMALL_STATE(1446)] = 83071, + [SMALL_STATE(1447)] = 83135, + [SMALL_STATE(1448)] = 83199, + [SMALL_STATE(1449)] = 83263, + [SMALL_STATE(1450)] = 83327, + [SMALL_STATE(1451)] = 83391, + [SMALL_STATE(1452)] = 83455, + [SMALL_STATE(1453)] = 83495, + [SMALL_STATE(1454)] = 83559, + [SMALL_STATE(1455)] = 83598, + [SMALL_STATE(1456)] = 83637, + [SMALL_STATE(1457)] = 83673, + [SMALL_STATE(1458)] = 83709, + [SMALL_STATE(1459)] = 83745, + [SMALL_STATE(1460)] = 83781, + [SMALL_STATE(1461)] = 83817, + [SMALL_STATE(1462)] = 83879, + [SMALL_STATE(1463)] = 83913, + [SMALL_STATE(1464)] = 83945, + [SMALL_STATE(1465)] = 83981, + [SMALL_STATE(1466)] = 84017, + [SMALL_STATE(1467)] = 84079, + [SMALL_STATE(1468)] = 84111, + [SMALL_STATE(1469)] = 84146, + [SMALL_STATE(1470)] = 84177, + [SMALL_STATE(1471)] = 84212, + [SMALL_STATE(1472)] = 84271, + [SMALL_STATE(1473)] = 84306, + [SMALL_STATE(1474)] = 84341, + [SMALL_STATE(1475)] = 84376, + [SMALL_STATE(1476)] = 84411, + [SMALL_STATE(1477)] = 84444, + [SMALL_STATE(1478)] = 84477, + [SMALL_STATE(1479)] = 84508, + [SMALL_STATE(1480)] = 84541, + [SMALL_STATE(1481)] = 84574, + [SMALL_STATE(1482)] = 84605, + [SMALL_STATE(1483)] = 84640, + [SMALL_STATE(1484)] = 84675, + [SMALL_STATE(1485)] = 84706, + [SMALL_STATE(1486)] = 84737, + [SMALL_STATE(1487)] = 84768, + [SMALL_STATE(1488)] = 84799, + [SMALL_STATE(1489)] = 84832, + [SMALL_STATE(1490)] = 84863, + [SMALL_STATE(1491)] = 84898, + [SMALL_STATE(1492)] = 84933, + [SMALL_STATE(1493)] = 84968, + [SMALL_STATE(1494)] = 85001, + [SMALL_STATE(1495)] = 85034, + [SMALL_STATE(1496)] = 85065, + [SMALL_STATE(1497)] = 85100, + [SMALL_STATE(1498)] = 85131, + [SMALL_STATE(1499)] = 85164, + [SMALL_STATE(1500)] = 85197, + [SMALL_STATE(1501)] = 85229, + [SMALL_STATE(1502)] = 85259, + [SMALL_STATE(1503)] = 85291, + [SMALL_STATE(1504)] = 85325, + [SMALL_STATE(1505)] = 85357, + [SMALL_STATE(1506)] = 85389, + [SMALL_STATE(1507)] = 85423, + [SMALL_STATE(1508)] = 85459, + [SMALL_STATE(1509)] = 85493, + [SMALL_STATE(1510)] = 85525, + [SMALL_STATE(1511)] = 85559, + [SMALL_STATE(1512)] = 85593, + [SMALL_STATE(1513)] = 85627, + [SMALL_STATE(1514)] = 85661, + [SMALL_STATE(1515)] = 85695, + [SMALL_STATE(1516)] = 85727, + [SMALL_STATE(1517)] = 85763, + [SMALL_STATE(1518)] = 85795, + [SMALL_STATE(1519)] = 85827, + [SMALL_STATE(1520)] = 85861, + [SMALL_STATE(1521)] = 85893, + [SMALL_STATE(1522)] = 85927, + [SMALL_STATE(1523)] = 85957, + [SMALL_STATE(1524)] = 85989, + [SMALL_STATE(1525)] = 86023, + [SMALL_STATE(1526)] = 86057, + [SMALL_STATE(1527)] = 86087, + [SMALL_STATE(1528)] = 86119, + [SMALL_STATE(1529)] = 86149, + [SMALL_STATE(1530)] = 86179, + [SMALL_STATE(1531)] = 86211, + [SMALL_STATE(1532)] = 86243, + [SMALL_STATE(1533)] = 86277, + [SMALL_STATE(1534)] = 86309, + [SMALL_STATE(1535)] = 86341, + [SMALL_STATE(1536)] = 86373, + [SMALL_STATE(1537)] = 86405, + [SMALL_STATE(1538)] = 86437, + [SMALL_STATE(1539)] = 86471, + [SMALL_STATE(1540)] = 86505, + [SMALL_STATE(1541)] = 86535, + [SMALL_STATE(1542)] = 86564, + [SMALL_STATE(1543)] = 86597, + [SMALL_STATE(1544)] = 86628, + [SMALL_STATE(1545)] = 86657, + [SMALL_STATE(1546)] = 86686, + [SMALL_STATE(1547)] = 86715, + [SMALL_STATE(1548)] = 86746, + [SMALL_STATE(1549)] = 86777, + [SMALL_STATE(1550)] = 86808, + [SMALL_STATE(1551)] = 86837, + [SMALL_STATE(1552)] = 86866, + [SMALL_STATE(1553)] = 86897, + [SMALL_STATE(1554)] = 86928, + [SMALL_STATE(1555)] = 86959, + [SMALL_STATE(1556)] = 86990, + [SMALL_STATE(1557)] = 87019, + [SMALL_STATE(1558)] = 87050, + [SMALL_STATE(1559)] = 87085, + [SMALL_STATE(1560)] = 87118, + [SMALL_STATE(1561)] = 87147, + [SMALL_STATE(1562)] = 87178, + [SMALL_STATE(1563)] = 87207, + [SMALL_STATE(1564)] = 87236, + [SMALL_STATE(1565)] = 87265, + [SMALL_STATE(1566)] = 87296, + [SMALL_STATE(1567)] = 87325, + [SMALL_STATE(1568)] = 87356, + [SMALL_STATE(1569)] = 87387, + [SMALL_STATE(1570)] = 87420, + [SMALL_STATE(1571)] = 87451, + [SMALL_STATE(1572)] = 87484, + [SMALL_STATE(1573)] = 87515, + [SMALL_STATE(1574)] = 87548, + [SMALL_STATE(1575)] = 87581, + [SMALL_STATE(1576)] = 87612, + [SMALL_STATE(1577)] = 87643, + [SMALL_STATE(1578)] = 87672, + [SMALL_STATE(1579)] = 87703, + [SMALL_STATE(1580)] = 87736, + [SMALL_STATE(1581)] = 87767, + [SMALL_STATE(1582)] = 87800, + [SMALL_STATE(1583)] = 87829, + [SMALL_STATE(1584)] = 87858, + [SMALL_STATE(1585)] = 87891, + [SMALL_STATE(1586)] = 87922, + [SMALL_STATE(1587)] = 87953, + [SMALL_STATE(1588)] = 87984, + [SMALL_STATE(1589)] = 88015, + [SMALL_STATE(1590)] = 88044, + [SMALL_STATE(1591)] = 88077, + [SMALL_STATE(1592)] = 88108, + [SMALL_STATE(1593)] = 88139, + [SMALL_STATE(1594)] = 88172, + [SMALL_STATE(1595)] = 88203, + [SMALL_STATE(1596)] = 88234, + [SMALL_STATE(1597)] = 88267, + [SMALL_STATE(1598)] = 88296, + [SMALL_STATE(1599)] = 88329, + [SMALL_STATE(1600)] = 88360, + [SMALL_STATE(1601)] = 88391, + [SMALL_STATE(1602)] = 88426, + [SMALL_STATE(1603)] = 88455, + [SMALL_STATE(1604)] = 88486, + [SMALL_STATE(1605)] = 88519, + [SMALL_STATE(1606)] = 88552, + [SMALL_STATE(1607)] = 88583, + [SMALL_STATE(1608)] = 88612, + [SMALL_STATE(1609)] = 88643, + [SMALL_STATE(1610)] = 88674, + [SMALL_STATE(1611)] = 88707, + [SMALL_STATE(1612)] = 88737, + [SMALL_STATE(1613)] = 88765, + [SMALL_STATE(1614)] = 88797, + [SMALL_STATE(1615)] = 88829, + [SMALL_STATE(1616)] = 88861, + [SMALL_STATE(1617)] = 88889, + [SMALL_STATE(1618)] = 88919, + [SMALL_STATE(1619)] = 88949, + [SMALL_STATE(1620)] = 88981, + [SMALL_STATE(1621)] = 89009, + [SMALL_STATE(1622)] = 89039, + [SMALL_STATE(1623)] = 89067, + [SMALL_STATE(1624)] = 89097, + [SMALL_STATE(1625)] = 89127, + [SMALL_STATE(1626)] = 89155, + [SMALL_STATE(1627)] = 89183, + [SMALL_STATE(1628)] = 89213, + [SMALL_STATE(1629)] = 89243, + [SMALL_STATE(1630)] = 89271, + [SMALL_STATE(1631)] = 89299, + [SMALL_STATE(1632)] = 89327, + [SMALL_STATE(1633)] = 89357, + [SMALL_STATE(1634)] = 89389, + [SMALL_STATE(1635)] = 89417, + [SMALL_STATE(1636)] = 89445, + [SMALL_STATE(1637)] = 89473, + [SMALL_STATE(1638)] = 89501, + [SMALL_STATE(1639)] = 89529, + [SMALL_STATE(1640)] = 89557, + [SMALL_STATE(1641)] = 89587, + [SMALL_STATE(1642)] = 89617, + [SMALL_STATE(1643)] = 89647, + [SMALL_STATE(1644)] = 89675, + [SMALL_STATE(1645)] = 89705, + [SMALL_STATE(1646)] = 89735, + [SMALL_STATE(1647)] = 89763, + [SMALL_STATE(1648)] = 89791, + [SMALL_STATE(1649)] = 89821, + [SMALL_STATE(1650)] = 89851, + [SMALL_STATE(1651)] = 89881, + [SMALL_STATE(1652)] = 89909, + [SMALL_STATE(1653)] = 89937, + [SMALL_STATE(1654)] = 89967, + [SMALL_STATE(1655)] = 89995, + [SMALL_STATE(1656)] = 90023, + [SMALL_STATE(1657)] = 90053, + [SMALL_STATE(1658)] = 90083, + [SMALL_STATE(1659)] = 90113, + [SMALL_STATE(1660)] = 90141, + [SMALL_STATE(1661)] = 90173, + [SMALL_STATE(1662)] = 90203, + [SMALL_STATE(1663)] = 90233, + [SMALL_STATE(1664)] = 90265, + [SMALL_STATE(1665)] = 90293, + [SMALL_STATE(1666)] = 90323, + [SMALL_STATE(1667)] = 90353, + [SMALL_STATE(1668)] = 90381, + [SMALL_STATE(1669)] = 90409, + [SMALL_STATE(1670)] = 90439, + [SMALL_STATE(1671)] = 90469, + [SMALL_STATE(1672)] = 90497, + [SMALL_STATE(1673)] = 90525, + [SMALL_STATE(1674)] = 90555, + [SMALL_STATE(1675)] = 90583, + [SMALL_STATE(1676)] = 90611, + [SMALL_STATE(1677)] = 90641, + [SMALL_STATE(1678)] = 90669, + [SMALL_STATE(1679)] = 90697, + [SMALL_STATE(1680)] = 90727, + [SMALL_STATE(1681)] = 90757, + [SMALL_STATE(1682)] = 90787, + [SMALL_STATE(1683)] = 90815, + [SMALL_STATE(1684)] = 90843, + [SMALL_STATE(1685)] = 90871, + [SMALL_STATE(1686)] = 90899, + [SMALL_STATE(1687)] = 90927, + [SMALL_STATE(1688)] = 90957, + [SMALL_STATE(1689)] = 90987, + [SMALL_STATE(1690)] = 91017, + [SMALL_STATE(1691)] = 91047, + [SMALL_STATE(1692)] = 91077, + [SMALL_STATE(1693)] = 91107, + [SMALL_STATE(1694)] = 91135, + [SMALL_STATE(1695)] = 91163, + [SMALL_STATE(1696)] = 91193, + [SMALL_STATE(1697)] = 91220, + [SMALL_STATE(1698)] = 91249, + [SMALL_STATE(1699)] = 91276, + [SMALL_STATE(1700)] = 91303, + [SMALL_STATE(1701)] = 91330, + [SMALL_STATE(1702)] = 91357, + [SMALL_STATE(1703)] = 91384, + [SMALL_STATE(1704)] = 91411, + [SMALL_STATE(1705)] = 91438, + [SMALL_STATE(1706)] = 91467, + [SMALL_STATE(1707)] = 91496, + [SMALL_STATE(1708)] = 91523, + [SMALL_STATE(1709)] = 91552, + [SMALL_STATE(1710)] = 91579, + [SMALL_STATE(1711)] = 91606, + [SMALL_STATE(1712)] = 91635, + [SMALL_STATE(1713)] = 91662, + [SMALL_STATE(1714)] = 91691, + [SMALL_STATE(1715)] = 91720, + [SMALL_STATE(1716)] = 91749, + [SMALL_STATE(1717)] = 91776, + [SMALL_STATE(1718)] = 91803, + [SMALL_STATE(1719)] = 91830, + [SMALL_STATE(1720)] = 91857, + [SMALL_STATE(1721)] = 91886, + [SMALL_STATE(1722)] = 91915, + [SMALL_STATE(1723)] = 91944, + [SMALL_STATE(1724)] = 91971, + [SMALL_STATE(1725)] = 91998, + [SMALL_STATE(1726)] = 92025, + [SMALL_STATE(1727)] = 92052, + [SMALL_STATE(1728)] = 92081, + [SMALL_STATE(1729)] = 92110, + [SMALL_STATE(1730)] = 92137, + [SMALL_STATE(1731)] = 92166, + [SMALL_STATE(1732)] = 92195, + [SMALL_STATE(1733)] = 92222, + [SMALL_STATE(1734)] = 92249, + [SMALL_STATE(1735)] = 92276, + [SMALL_STATE(1736)] = 92303, + [SMALL_STATE(1737)] = 92330, + [SMALL_STATE(1738)] = 92359, + [SMALL_STATE(1739)] = 92386, + [SMALL_STATE(1740)] = 92413, + [SMALL_STATE(1741)] = 92442, + [SMALL_STATE(1742)] = 92469, + [SMALL_STATE(1743)] = 92496, + [SMALL_STATE(1744)] = 92523, + [SMALL_STATE(1745)] = 92552, + [SMALL_STATE(1746)] = 92579, + [SMALL_STATE(1747)] = 92608, + [SMALL_STATE(1748)] = 92635, + [SMALL_STATE(1749)] = 92662, + [SMALL_STATE(1750)] = 92691, + [SMALL_STATE(1751)] = 92720, + [SMALL_STATE(1752)] = 92747, + [SMALL_STATE(1753)] = 92774, + [SMALL_STATE(1754)] = 92803, + [SMALL_STATE(1755)] = 92830, + [SMALL_STATE(1756)] = 92857, + [SMALL_STATE(1757)] = 92884, + [SMALL_STATE(1758)] = 92911, + [SMALL_STATE(1759)] = 92938, + [SMALL_STATE(1760)] = 92965, + [SMALL_STATE(1761)] = 92992, + [SMALL_STATE(1762)] = 93021, + [SMALL_STATE(1763)] = 93050, + [SMALL_STATE(1764)] = 93077, + [SMALL_STATE(1765)] = 93104, + [SMALL_STATE(1766)] = 93131, + [SMALL_STATE(1767)] = 93158, + [SMALL_STATE(1768)] = 93185, + [SMALL_STATE(1769)] = 93212, + [SMALL_STATE(1770)] = 93239, + [SMALL_STATE(1771)] = 93268, + [SMALL_STATE(1772)] = 93297, + [SMALL_STATE(1773)] = 93324, + [SMALL_STATE(1774)] = 93351, + [SMALL_STATE(1775)] = 93378, + [SMALL_STATE(1776)] = 93406, + [SMALL_STATE(1777)] = 93432, + [SMALL_STATE(1778)] = 93476, + [SMALL_STATE(1779)] = 93520, + [SMALL_STATE(1780)] = 93546, + [SMALL_STATE(1781)] = 93572, + [SMALL_STATE(1782)] = 93598, + [SMALL_STATE(1783)] = 93624, + [SMALL_STATE(1784)] = 93650, + [SMALL_STATE(1785)] = 93678, + [SMALL_STATE(1786)] = 93704, + [SMALL_STATE(1787)] = 93732, + [SMALL_STATE(1788)] = 93758, + [SMALL_STATE(1789)] = 93784, + [SMALL_STATE(1790)] = 93810, + [SMALL_STATE(1791)] = 93836, + [SMALL_STATE(1792)] = 93862, + [SMALL_STATE(1793)] = 93888, + [SMALL_STATE(1794)] = 93912, + [SMALL_STATE(1795)] = 93940, + [SMALL_STATE(1796)] = 93968, + [SMALL_STATE(1797)] = 93994, + [SMALL_STATE(1798)] = 94020, + [SMALL_STATE(1799)] = 94046, + [SMALL_STATE(1800)] = 94074, + [SMALL_STATE(1801)] = 94100, + [SMALL_STATE(1802)] = 94124, + [SMALL_STATE(1803)] = 94150, + [SMALL_STATE(1804)] = 94178, + [SMALL_STATE(1805)] = 94204, + [SMALL_STATE(1806)] = 94230, + [SMALL_STATE(1807)] = 94256, + [SMALL_STATE(1808)] = 94284, + [SMALL_STATE(1809)] = 94312, + [SMALL_STATE(1810)] = 94338, + [SMALL_STATE(1811)] = 94364, + [SMALL_STATE(1812)] = 94392, + [SMALL_STATE(1813)] = 94438, + [SMALL_STATE(1814)] = 94464, + [SMALL_STATE(1815)] = 94490, + [SMALL_STATE(1816)] = 94516, + [SMALL_STATE(1817)] = 94542, + [SMALL_STATE(1818)] = 94570, + [SMALL_STATE(1819)] = 94598, + [SMALL_STATE(1820)] = 94626, + [SMALL_STATE(1821)] = 94670, + [SMALL_STATE(1822)] = 94694, + [SMALL_STATE(1823)] = 94720, + [SMALL_STATE(1824)] = 94748, + [SMALL_STATE(1825)] = 94774, + [SMALL_STATE(1826)] = 94802, + [SMALL_STATE(1827)] = 94828, + [SMALL_STATE(1828)] = 94872, + [SMALL_STATE(1829)] = 94900, + [SMALL_STATE(1830)] = 94926, + [SMALL_STATE(1831)] = 94954, + [SMALL_STATE(1832)] = 94982, + [SMALL_STATE(1833)] = 95008, + [SMALL_STATE(1834)] = 95034, + [SMALL_STATE(1835)] = 95060, + [SMALL_STATE(1836)] = 95086, + [SMALL_STATE(1837)] = 95112, + [SMALL_STATE(1838)] = 95138, + [SMALL_STATE(1839)] = 95164, + [SMALL_STATE(1840)] = 95192, + [SMALL_STATE(1841)] = 95218, + [SMALL_STATE(1842)] = 95246, + [SMALL_STATE(1843)] = 95290, + [SMALL_STATE(1844)] = 95316, + [SMALL_STATE(1845)] = 95342, + [SMALL_STATE(1846)] = 95368, + [SMALL_STATE(1847)] = 95394, + [SMALL_STATE(1848)] = 95420, + [SMALL_STATE(1849)] = 95448, + [SMALL_STATE(1850)] = 95474, + [SMALL_STATE(1851)] = 95500, + [SMALL_STATE(1852)] = 95528, + [SMALL_STATE(1853)] = 95554, + [SMALL_STATE(1854)] = 95580, + [SMALL_STATE(1855)] = 95606, + [SMALL_STATE(1856)] = 95632, + [SMALL_STATE(1857)] = 95659, + [SMALL_STATE(1858)] = 95684, + [SMALL_STATE(1859)] = 95709, + [SMALL_STATE(1860)] = 95734, + [SMALL_STATE(1861)] = 95759, + [SMALL_STATE(1862)] = 95786, + [SMALL_STATE(1863)] = 95811, + [SMALL_STATE(1864)] = 95836, + [SMALL_STATE(1865)] = 95861, + [SMALL_STATE(1866)] = 95886, + [SMALL_STATE(1867)] = 95911, + [SMALL_STATE(1868)] = 95936, + [SMALL_STATE(1869)] = 95961, + [SMALL_STATE(1870)] = 95986, + [SMALL_STATE(1871)] = 96011, + [SMALL_STATE(1872)] = 96036, + [SMALL_STATE(1873)] = 96061, + [SMALL_STATE(1874)] = 96086, + [SMALL_STATE(1875)] = 96111, + [SMALL_STATE(1876)] = 96136, + [SMALL_STATE(1877)] = 96161, + [SMALL_STATE(1878)] = 96186, + [SMALL_STATE(1879)] = 96213, + [SMALL_STATE(1880)] = 96240, + [SMALL_STATE(1881)] = 96265, + [SMALL_STATE(1882)] = 96290, + [SMALL_STATE(1883)] = 96315, + [SMALL_STATE(1884)] = 96340, + [SMALL_STATE(1885)] = 96365, + [SMALL_STATE(1886)] = 96390, + [SMALL_STATE(1887)] = 96415, + [SMALL_STATE(1888)] = 96440, + [SMALL_STATE(1889)] = 96465, + [SMALL_STATE(1890)] = 96490, + [SMALL_STATE(1891)] = 96515, + [SMALL_STATE(1892)] = 96542, + [SMALL_STATE(1893)] = 96567, + [SMALL_STATE(1894)] = 96592, + [SMALL_STATE(1895)] = 96619, + [SMALL_STATE(1896)] = 96644, + [SMALL_STATE(1897)] = 96669, + [SMALL_STATE(1898)] = 96694, + [SMALL_STATE(1899)] = 96721, + [SMALL_STATE(1900)] = 96746, + [SMALL_STATE(1901)] = 96771, + [SMALL_STATE(1902)] = 96798, + [SMALL_STATE(1903)] = 96823, + [SMALL_STATE(1904)] = 96848, + [SMALL_STATE(1905)] = 96873, + [SMALL_STATE(1906)] = 96898, + [SMALL_STATE(1907)] = 96923, + [SMALL_STATE(1908)] = 96947, + [SMALL_STATE(1909)] = 96971, + [SMALL_STATE(1910)] = 97011, + [SMALL_STATE(1911)] = 97033, + [SMALL_STATE(1912)] = 97055, + [SMALL_STATE(1913)] = 97079, + [SMALL_STATE(1914)] = 97103, + [SMALL_STATE(1915)] = 97127, + [SMALL_STATE(1916)] = 97151, + [SMALL_STATE(1917)] = 97175, + [SMALL_STATE(1918)] = 97215, + [SMALL_STATE(1919)] = 97239, + [SMALL_STATE(1920)] = 97263, + [SMALL_STATE(1921)] = 97287, + [SMALL_STATE(1922)] = 97311, + [SMALL_STATE(1923)] = 97335, + [SMALL_STATE(1924)] = 97357, + [SMALL_STATE(1925)] = 97381, + [SMALL_STATE(1926)] = 97405, + [SMALL_STATE(1927)] = 97429, + [SMALL_STATE(1928)] = 97453, + [SMALL_STATE(1929)] = 97477, + [SMALL_STATE(1930)] = 97501, + [SMALL_STATE(1931)] = 97525, + [SMALL_STATE(1932)] = 97549, + [SMALL_STATE(1933)] = 97573, + [SMALL_STATE(1934)] = 97597, + [SMALL_STATE(1935)] = 97621, + [SMALL_STATE(1936)] = 97645, + [SMALL_STATE(1937)] = 97669, + [SMALL_STATE(1938)] = 97693, + [SMALL_STATE(1939)] = 97717, + [SMALL_STATE(1940)] = 97741, + [SMALL_STATE(1941)] = 97778, + [SMALL_STATE(1942)] = 97815, + [SMALL_STATE(1943)] = 97852, + [SMALL_STATE(1944)] = 97887, + [SMALL_STATE(1945)] = 97924, + [SMALL_STATE(1946)] = 97961, + [SMALL_STATE(1947)] = 97998, + [SMALL_STATE(1948)] = 98035, + [SMALL_STATE(1949)] = 98072, + [SMALL_STATE(1950)] = 98109, + [SMALL_STATE(1951)] = 98146, + [SMALL_STATE(1952)] = 98183, + [SMALL_STATE(1953)] = 98220, + [SMALL_STATE(1954)] = 98255, + [SMALL_STATE(1955)] = 98290, + [SMALL_STATE(1956)] = 98327, + [SMALL_STATE(1957)] = 98362, + [SMALL_STATE(1958)] = 98397, + [SMALL_STATE(1959)] = 98434, + [SMALL_STATE(1960)] = 98471, + [SMALL_STATE(1961)] = 98508, + [SMALL_STATE(1962)] = 98545, + [SMALL_STATE(1963)] = 98582, + [SMALL_STATE(1964)] = 98617, + [SMALL_STATE(1965)] = 98654, + [SMALL_STATE(1966)] = 98689, + [SMALL_STATE(1967)] = 98726, + [SMALL_STATE(1968)] = 98763, + [SMALL_STATE(1969)] = 98800, + [SMALL_STATE(1970)] = 98837, + [SMALL_STATE(1971)] = 98874, + [SMALL_STATE(1972)] = 98911, + [SMALL_STATE(1973)] = 98948, + [SMALL_STATE(1974)] = 98985, + [SMALL_STATE(1975)] = 99022, + [SMALL_STATE(1976)] = 99059, + [SMALL_STATE(1977)] = 99096, + [SMALL_STATE(1978)] = 99133, + [SMALL_STATE(1979)] = 99168, + [SMALL_STATE(1980)] = 99203, + [SMALL_STATE(1981)] = 99240, + [SMALL_STATE(1982)] = 99277, + [SMALL_STATE(1983)] = 99314, + [SMALL_STATE(1984)] = 99351, + [SMALL_STATE(1985)] = 99388, + [SMALL_STATE(1986)] = 99425, + [SMALL_STATE(1987)] = 99462, + [SMALL_STATE(1988)] = 99499, + [SMALL_STATE(1989)] = 99536, + [SMALL_STATE(1990)] = 99573, + [SMALL_STATE(1991)] = 99610, + [SMALL_STATE(1992)] = 99647, + [SMALL_STATE(1993)] = 99684, + [SMALL_STATE(1994)] = 99719, + [SMALL_STATE(1995)] = 99756, + [SMALL_STATE(1996)] = 99791, + [SMALL_STATE(1997)] = 99826, + [SMALL_STATE(1998)] = 99863, + [SMALL_STATE(1999)] = 99898, + [SMALL_STATE(2000)] = 99935, + [SMALL_STATE(2001)] = 99970, + [SMALL_STATE(2002)] = 100005, + [SMALL_STATE(2003)] = 100040, + [SMALL_STATE(2004)] = 100077, + [SMALL_STATE(2005)] = 100112, + [SMALL_STATE(2006)] = 100149, + [SMALL_STATE(2007)] = 100186, + [SMALL_STATE(2008)] = 100223, + [SMALL_STATE(2009)] = 100258, + [SMALL_STATE(2010)] = 100295, + [SMALL_STATE(2011)] = 100330, + [SMALL_STATE(2012)] = 100365, + [SMALL_STATE(2013)] = 100402, + [SMALL_STATE(2014)] = 100437, + [SMALL_STATE(2015)] = 100472, + [SMALL_STATE(2016)] = 100509, + [SMALL_STATE(2017)] = 100544, + [SMALL_STATE(2018)] = 100581, + [SMALL_STATE(2019)] = 100616, + [SMALL_STATE(2020)] = 100653, + [SMALL_STATE(2021)] = 100690, + [SMALL_STATE(2022)] = 100727, + [SMALL_STATE(2023)] = 100761, + [SMALL_STATE(2024)] = 100795, + [SMALL_STATE(2025)] = 100831, + [SMALL_STATE(2026)] = 100865, + [SMALL_STATE(2027)] = 100901, + [SMALL_STATE(2028)] = 100935, + [SMALL_STATE(2029)] = 100971, + [SMALL_STATE(2030)] = 101000, + [SMALL_STATE(2031)] = 101031, + [SMALL_STATE(2032)] = 101062, + [SMALL_STATE(2033)] = 101089, + [SMALL_STATE(2034)] = 101122, + [SMALL_STATE(2035)] = 101155, + [SMALL_STATE(2036)] = 101186, + [SMALL_STATE(2037)] = 101210, + [SMALL_STATE(2038)] = 101238, + [SMALL_STATE(2039)] = 101266, + [SMALL_STATE(2040)] = 101294, + [SMALL_STATE(2041)] = 101324, + [SMALL_STATE(2042)] = 101352, + [SMALL_STATE(2043)] = 101382, + [SMALL_STATE(2044)] = 101410, + [SMALL_STATE(2045)] = 101440, + [SMALL_STATE(2046)] = 101464, + [SMALL_STATE(2047)] = 101492, + [SMALL_STATE(2048)] = 101520, + [SMALL_STATE(2049)] = 101548, + [SMALL_STATE(2050)] = 101578, + [SMALL_STATE(2051)] = 101608, + [SMALL_STATE(2052)] = 101638, + [SMALL_STATE(2053)] = 101666, + [SMALL_STATE(2054)] = 101694, + [SMALL_STATE(2055)] = 101722, + [SMALL_STATE(2056)] = 101752, + [SMALL_STATE(2057)] = 101780, + [SMALL_STATE(2058)] = 101808, + [SMALL_STATE(2059)] = 101836, + [SMALL_STATE(2060)] = 101864, + [SMALL_STATE(2061)] = 101892, + [SMALL_STATE(2062)] = 101922, + [SMALL_STATE(2063)] = 101952, + [SMALL_STATE(2064)] = 101982, + [SMALL_STATE(2065)] = 102006, + [SMALL_STATE(2066)] = 102034, + [SMALL_STATE(2067)] = 102064, + [SMALL_STATE(2068)] = 102094, + [SMALL_STATE(2069)] = 102122, + [SMALL_STATE(2070)] = 102150, + [SMALL_STATE(2071)] = 102180, + [SMALL_STATE(2072)] = 102208, + [SMALL_STATE(2073)] = 102238, + [SMALL_STATE(2074)] = 102266, + [SMALL_STATE(2075)] = 102294, + [SMALL_STATE(2076)] = 102322, + [SMALL_STATE(2077)] = 102352, + [SMALL_STATE(2078)] = 102382, + [SMALL_STATE(2079)] = 102412, + [SMALL_STATE(2080)] = 102440, + [SMALL_STATE(2081)] = 102468, + [SMALL_STATE(2082)] = 102498, + [SMALL_STATE(2083)] = 102528, + [SMALL_STATE(2084)] = 102558, + [SMALL_STATE(2085)] = 102588, + [SMALL_STATE(2086)] = 102616, + [SMALL_STATE(2087)] = 102646, + [SMALL_STATE(2088)] = 102676, + [SMALL_STATE(2089)] = 102706, + [SMALL_STATE(2090)] = 102734, + [SMALL_STATE(2091)] = 102764, + [SMALL_STATE(2092)] = 102792, + [SMALL_STATE(2093)] = 102820, + [SMALL_STATE(2094)] = 102850, + [SMALL_STATE(2095)] = 102880, + [SMALL_STATE(2096)] = 102908, + [SMALL_STATE(2097)] = 102938, + [SMALL_STATE(2098)] = 102966, + [SMALL_STATE(2099)] = 102994, + [SMALL_STATE(2100)] = 103024, + [SMALL_STATE(2101)] = 103054, + [SMALL_STATE(2102)] = 103084, + [SMALL_STATE(2103)] = 103112, + [SMALL_STATE(2104)] = 103140, + [SMALL_STATE(2105)] = 103168, + [SMALL_STATE(2106)] = 103196, + [SMALL_STATE(2107)] = 103226, + [SMALL_STATE(2108)] = 103256, + [SMALL_STATE(2109)] = 103284, + [SMALL_STATE(2110)] = 103312, + [SMALL_STATE(2111)] = 103340, + [SMALL_STATE(2112)] = 103370, + [SMALL_STATE(2113)] = 103398, + [SMALL_STATE(2114)] = 103428, + [SMALL_STATE(2115)] = 103458, + [SMALL_STATE(2116)] = 103488, + [SMALL_STATE(2117)] = 103518, + [SMALL_STATE(2118)] = 103546, + [SMALL_STATE(2119)] = 103576, + [SMALL_STATE(2120)] = 103604, + [SMALL_STATE(2121)] = 103632, + [SMALL_STATE(2122)] = 103660, + [SMALL_STATE(2123)] = 103684, + [SMALL_STATE(2124)] = 103714, + [SMALL_STATE(2125)] = 103744, + [SMALL_STATE(2126)] = 103772, + [SMALL_STATE(2127)] = 103802, + [SMALL_STATE(2128)] = 103832, + [SMALL_STATE(2129)] = 103862, + [SMALL_STATE(2130)] = 103890, + [SMALL_STATE(2131)] = 103918, + [SMALL_STATE(2132)] = 103948, + [SMALL_STATE(2133)] = 103978, + [SMALL_STATE(2134)] = 104008, + [SMALL_STATE(2135)] = 104038, + [SMALL_STATE(2136)] = 104066, + [SMALL_STATE(2137)] = 104096, + [SMALL_STATE(2138)] = 104126, + [SMALL_STATE(2139)] = 104154, + [SMALL_STATE(2140)] = 104182, + [SMALL_STATE(2141)] = 104210, + [SMALL_STATE(2142)] = 104240, + [SMALL_STATE(2143)] = 104270, + [SMALL_STATE(2144)] = 104298, + [SMALL_STATE(2145)] = 104326, + [SMALL_STATE(2146)] = 104354, + [SMALL_STATE(2147)] = 104382, + [SMALL_STATE(2148)] = 104412, + [SMALL_STATE(2149)] = 104440, + [SMALL_STATE(2150)] = 104468, + [SMALL_STATE(2151)] = 104496, + [SMALL_STATE(2152)] = 104524, + [SMALL_STATE(2153)] = 104554, + [SMALL_STATE(2154)] = 104582, + [SMALL_STATE(2155)] = 104610, + [SMALL_STATE(2156)] = 104638, + [SMALL_STATE(2157)] = 104666, + [SMALL_STATE(2158)] = 104694, + [SMALL_STATE(2159)] = 104722, + [SMALL_STATE(2160)] = 104752, + [SMALL_STATE(2161)] = 104782, + [SMALL_STATE(2162)] = 104810, + [SMALL_STATE(2163)] = 104838, + [SMALL_STATE(2164)] = 104868, + [SMALL_STATE(2165)] = 104896, + [SMALL_STATE(2166)] = 104924, + [SMALL_STATE(2167)] = 104954, + [SMALL_STATE(2168)] = 104984, + [SMALL_STATE(2169)] = 105014, + [SMALL_STATE(2170)] = 105044, + [SMALL_STATE(2171)] = 105072, + [SMALL_STATE(2172)] = 105100, + [SMALL_STATE(2173)] = 105128, + [SMALL_STATE(2174)] = 105156, + [SMALL_STATE(2175)] = 105184, + [SMALL_STATE(2176)] = 105214, + [SMALL_STATE(2177)] = 105241, + [SMALL_STATE(2178)] = 105266, + [SMALL_STATE(2179)] = 105293, + [SMALL_STATE(2180)] = 105320, + [SMALL_STATE(2181)] = 105347, + [SMALL_STATE(2182)] = 105374, + [SMALL_STATE(2183)] = 105401, + [SMALL_STATE(2184)] = 105428, + [SMALL_STATE(2185)] = 105455, + [SMALL_STATE(2186)] = 105482, + [SMALL_STATE(2187)] = 105509, + [SMALL_STATE(2188)] = 105536, + [SMALL_STATE(2189)] = 105563, + [SMALL_STATE(2190)] = 105590, + [SMALL_STATE(2191)] = 105617, + [SMALL_STATE(2192)] = 105644, + [SMALL_STATE(2193)] = 105671, + [SMALL_STATE(2194)] = 105698, + [SMALL_STATE(2195)] = 105725, + [SMALL_STATE(2196)] = 105752, + [SMALL_STATE(2197)] = 105779, + [SMALL_STATE(2198)] = 105806, + [SMALL_STATE(2199)] = 105833, + [SMALL_STATE(2200)] = 105860, + [SMALL_STATE(2201)] = 105887, + [SMALL_STATE(2202)] = 105914, + [SMALL_STATE(2203)] = 105941, + [SMALL_STATE(2204)] = 105968, + [SMALL_STATE(2205)] = 105995, + [SMALL_STATE(2206)] = 106022, + [SMALL_STATE(2207)] = 106049, + [SMALL_STATE(2208)] = 106076, + [SMALL_STATE(2209)] = 106103, + [SMALL_STATE(2210)] = 106130, + [SMALL_STATE(2211)] = 106157, + [SMALL_STATE(2212)] = 106184, + [SMALL_STATE(2213)] = 106211, + [SMALL_STATE(2214)] = 106238, + [SMALL_STATE(2215)] = 106265, + [SMALL_STATE(2216)] = 106292, + [SMALL_STATE(2217)] = 106319, + [SMALL_STATE(2218)] = 106346, + [SMALL_STATE(2219)] = 106373, + [SMALL_STATE(2220)] = 106400, + [SMALL_STATE(2221)] = 106427, + [SMALL_STATE(2222)] = 106454, + [SMALL_STATE(2223)] = 106481, + [SMALL_STATE(2224)] = 106508, + [SMALL_STATE(2225)] = 106535, + [SMALL_STATE(2226)] = 106562, + [SMALL_STATE(2227)] = 106589, + [SMALL_STATE(2228)] = 106616, + [SMALL_STATE(2229)] = 106643, + [SMALL_STATE(2230)] = 106670, + [SMALL_STATE(2231)] = 106697, + [SMALL_STATE(2232)] = 106724, + [SMALL_STATE(2233)] = 106751, + [SMALL_STATE(2234)] = 106778, + [SMALL_STATE(2235)] = 106805, + [SMALL_STATE(2236)] = 106832, + [SMALL_STATE(2237)] = 106859, + [SMALL_STATE(2238)] = 106886, + [SMALL_STATE(2239)] = 106913, + [SMALL_STATE(2240)] = 106940, + [SMALL_STATE(2241)] = 106967, + [SMALL_STATE(2242)] = 106994, + [SMALL_STATE(2243)] = 107021, + [SMALL_STATE(2244)] = 107048, + [SMALL_STATE(2245)] = 107075, + [SMALL_STATE(2246)] = 107102, + [SMALL_STATE(2247)] = 107129, + [SMALL_STATE(2248)] = 107156, + [SMALL_STATE(2249)] = 107183, + [SMALL_STATE(2250)] = 107210, + [SMALL_STATE(2251)] = 107237, + [SMALL_STATE(2252)] = 107264, + [SMALL_STATE(2253)] = 107291, + [SMALL_STATE(2254)] = 107318, + [SMALL_STATE(2255)] = 107345, + [SMALL_STATE(2256)] = 107372, + [SMALL_STATE(2257)] = 107399, + [SMALL_STATE(2258)] = 107426, + [SMALL_STATE(2259)] = 107447, + [SMALL_STATE(2260)] = 107474, + [SMALL_STATE(2261)] = 107501, + [SMALL_STATE(2262)] = 107528, + [SMALL_STATE(2263)] = 107555, + [SMALL_STATE(2264)] = 107582, + [SMALL_STATE(2265)] = 107609, + [SMALL_STATE(2266)] = 107636, + [SMALL_STATE(2267)] = 107663, + [SMALL_STATE(2268)] = 107690, + [SMALL_STATE(2269)] = 107717, + [SMALL_STATE(2270)] = 107744, + [SMALL_STATE(2271)] = 107771, + [SMALL_STATE(2272)] = 107798, + [SMALL_STATE(2273)] = 107825, + [SMALL_STATE(2274)] = 107852, + [SMALL_STATE(2275)] = 107879, + [SMALL_STATE(2276)] = 107906, + [SMALL_STATE(2277)] = 107933, + [SMALL_STATE(2278)] = 107960, + [SMALL_STATE(2279)] = 107987, + [SMALL_STATE(2280)] = 108014, + [SMALL_STATE(2281)] = 108041, + [SMALL_STATE(2282)] = 108068, + [SMALL_STATE(2283)] = 108095, + [SMALL_STATE(2284)] = 108122, + [SMALL_STATE(2285)] = 108149, + [SMALL_STATE(2286)] = 108176, + [SMALL_STATE(2287)] = 108201, + [SMALL_STATE(2288)] = 108228, + [SMALL_STATE(2289)] = 108255, + [SMALL_STATE(2290)] = 108282, + [SMALL_STATE(2291)] = 108309, + [SMALL_STATE(2292)] = 108336, + [SMALL_STATE(2293)] = 108363, + [SMALL_STATE(2294)] = 108390, + [SMALL_STATE(2295)] = 108409, + [SMALL_STATE(2296)] = 108436, + [SMALL_STATE(2297)] = 108463, + [SMALL_STATE(2298)] = 108490, + [SMALL_STATE(2299)] = 108517, + [SMALL_STATE(2300)] = 108534, + [SMALL_STATE(2301)] = 108561, + [SMALL_STATE(2302)] = 108588, + [SMALL_STATE(2303)] = 108615, + [SMALL_STATE(2304)] = 108642, + [SMALL_STATE(2305)] = 108669, + [SMALL_STATE(2306)] = 108696, + [SMALL_STATE(2307)] = 108723, + [SMALL_STATE(2308)] = 108744, + [SMALL_STATE(2309)] = 108771, + [SMALL_STATE(2310)] = 108798, + [SMALL_STATE(2311)] = 108825, + [SMALL_STATE(2312)] = 108852, + [SMALL_STATE(2313)] = 108879, + [SMALL_STATE(2314)] = 108906, + [SMALL_STATE(2315)] = 108933, + [SMALL_STATE(2316)] = 108960, + [SMALL_STATE(2317)] = 108987, + [SMALL_STATE(2318)] = 109014, + [SMALL_STATE(2319)] = 109041, + [SMALL_STATE(2320)] = 109068, + [SMALL_STATE(2321)] = 109095, + [SMALL_STATE(2322)] = 109122, + [SMALL_STATE(2323)] = 109149, + [SMALL_STATE(2324)] = 109176, + [SMALL_STATE(2325)] = 109203, + [SMALL_STATE(2326)] = 109227, + [SMALL_STATE(2327)] = 109251, + [SMALL_STATE(2328)] = 109275, + [SMALL_STATE(2329)] = 109299, + [SMALL_STATE(2330)] = 109323, + [SMALL_STATE(2331)] = 109347, + [SMALL_STATE(2332)] = 109371, + [SMALL_STATE(2333)] = 109395, + [SMALL_STATE(2334)] = 109419, + [SMALL_STATE(2335)] = 109443, + [SMALL_STATE(2336)] = 109467, + [SMALL_STATE(2337)] = 109491, + [SMALL_STATE(2338)] = 109515, + [SMALL_STATE(2339)] = 109539, + [SMALL_STATE(2340)] = 109563, + [SMALL_STATE(2341)] = 109587, + [SMALL_STATE(2342)] = 109611, + [SMALL_STATE(2343)] = 109635, + [SMALL_STATE(2344)] = 109659, + [SMALL_STATE(2345)] = 109683, + [SMALL_STATE(2346)] = 109707, + [SMALL_STATE(2347)] = 109731, + [SMALL_STATE(2348)] = 109755, + [SMALL_STATE(2349)] = 109779, + [SMALL_STATE(2350)] = 109803, + [SMALL_STATE(2351)] = 109827, + [SMALL_STATE(2352)] = 109851, + [SMALL_STATE(2353)] = 109875, + [SMALL_STATE(2354)] = 109899, + [SMALL_STATE(2355)] = 109919, + [SMALL_STATE(2356)] = 109943, + [SMALL_STATE(2357)] = 109967, + [SMALL_STATE(2358)] = 109991, + [SMALL_STATE(2359)] = 110015, + [SMALL_STATE(2360)] = 110039, + [SMALL_STATE(2361)] = 110063, + [SMALL_STATE(2362)] = 110087, + [SMALL_STATE(2363)] = 110111, + [SMALL_STATE(2364)] = 110135, + [SMALL_STATE(2365)] = 110159, + [SMALL_STATE(2366)] = 110179, + [SMALL_STATE(2367)] = 110203, + [SMALL_STATE(2368)] = 110227, + [SMALL_STATE(2369)] = 110251, + [SMALL_STATE(2370)] = 110275, + [SMALL_STATE(2371)] = 110299, + [SMALL_STATE(2372)] = 110323, + [SMALL_STATE(2373)] = 110347, + [SMALL_STATE(2374)] = 110371, + [SMALL_STATE(2375)] = 110395, + [SMALL_STATE(2376)] = 110419, + [SMALL_STATE(2377)] = 110443, + [SMALL_STATE(2378)] = 110467, + [SMALL_STATE(2379)] = 110491, + [SMALL_STATE(2380)] = 110515, + [SMALL_STATE(2381)] = 110535, + [SMALL_STATE(2382)] = 110559, + [SMALL_STATE(2383)] = 110579, + [SMALL_STATE(2384)] = 110599, + [SMALL_STATE(2385)] = 110623, + [SMALL_STATE(2386)] = 110647, + [SMALL_STATE(2387)] = 110671, + [SMALL_STATE(2388)] = 110695, + [SMALL_STATE(2389)] = 110719, + [SMALL_STATE(2390)] = 110743, + [SMALL_STATE(2391)] = 110767, + [SMALL_STATE(2392)] = 110791, + [SMALL_STATE(2393)] = 110807, + [SMALL_STATE(2394)] = 110831, + [SMALL_STATE(2395)] = 110847, + [SMALL_STATE(2396)] = 110871, + [SMALL_STATE(2397)] = 110895, + [SMALL_STATE(2398)] = 110919, + [SMALL_STATE(2399)] = 110943, + [SMALL_STATE(2400)] = 110967, + [SMALL_STATE(2401)] = 110991, + [SMALL_STATE(2402)] = 111015, + [SMALL_STATE(2403)] = 111039, + [SMALL_STATE(2404)] = 111055, + [SMALL_STATE(2405)] = 111079, + [SMALL_STATE(2406)] = 111099, + [SMALL_STATE(2407)] = 111123, + [SMALL_STATE(2408)] = 111147, + [SMALL_STATE(2409)] = 111171, + [SMALL_STATE(2410)] = 111195, + [SMALL_STATE(2411)] = 111219, + [SMALL_STATE(2412)] = 111239, + [SMALL_STATE(2413)] = 111260, + [SMALL_STATE(2414)] = 111281, + [SMALL_STATE(2415)] = 111302, + [SMALL_STATE(2416)] = 111321, + [SMALL_STATE(2417)] = 111336, + [SMALL_STATE(2418)] = 111351, + [SMALL_STATE(2419)] = 111372, + [SMALL_STATE(2420)] = 111393, + [SMALL_STATE(2421)] = 111414, + [SMALL_STATE(2422)] = 111435, + [SMALL_STATE(2423)] = 111456, + [SMALL_STATE(2424)] = 111477, + [SMALL_STATE(2425)] = 111496, + [SMALL_STATE(2426)] = 111517, + [SMALL_STATE(2427)] = 111538, + [SMALL_STATE(2428)] = 111559, + [SMALL_STATE(2429)] = 111580, + [SMALL_STATE(2430)] = 111595, + [SMALL_STATE(2431)] = 111610, + [SMALL_STATE(2432)] = 111629, + [SMALL_STATE(2433)] = 111650, + [SMALL_STATE(2434)] = 111671, + [SMALL_STATE(2435)] = 111692, + [SMALL_STATE(2436)] = 111715, + [SMALL_STATE(2437)] = 111736, + [SMALL_STATE(2438)] = 111757, + [SMALL_STATE(2439)] = 111778, + [SMALL_STATE(2440)] = 111799, + [SMALL_STATE(2441)] = 111820, + [SMALL_STATE(2442)] = 111839, + [SMALL_STATE(2443)] = 111860, + [SMALL_STATE(2444)] = 111875, + [SMALL_STATE(2445)] = 111896, + [SMALL_STATE(2446)] = 111915, + [SMALL_STATE(2447)] = 111934, + [SMALL_STATE(2448)] = 111955, + [SMALL_STATE(2449)] = 111974, + [SMALL_STATE(2450)] = 111989, + [SMALL_STATE(2451)] = 112008, + [SMALL_STATE(2452)] = 112027, + [SMALL_STATE(2453)] = 112050, + [SMALL_STATE(2454)] = 112069, + [SMALL_STATE(2455)] = 112090, + [SMALL_STATE(2456)] = 112109, + [SMALL_STATE(2457)] = 112128, + [SMALL_STATE(2458)] = 112147, + [SMALL_STATE(2459)] = 112166, + [SMALL_STATE(2460)] = 112185, + [SMALL_STATE(2461)] = 112206, + [SMALL_STATE(2462)] = 112225, + [SMALL_STATE(2463)] = 112246, + [SMALL_STATE(2464)] = 112265, + [SMALL_STATE(2465)] = 112284, + [SMALL_STATE(2466)] = 112303, + [SMALL_STATE(2467)] = 112322, + [SMALL_STATE(2468)] = 112340, + [SMALL_STATE(2469)] = 112358, + [SMALL_STATE(2470)] = 112376, + [SMALL_STATE(2471)] = 112394, + [SMALL_STATE(2472)] = 112412, + [SMALL_STATE(2473)] = 112430, + [SMALL_STATE(2474)] = 112450, + [SMALL_STATE(2475)] = 112470, + [SMALL_STATE(2476)] = 112488, + [SMALL_STATE(2477)] = 112506, + [SMALL_STATE(2478)] = 112524, + [SMALL_STATE(2479)] = 112538, + [SMALL_STATE(2480)] = 112556, + [SMALL_STATE(2481)] = 112570, + [SMALL_STATE(2482)] = 112588, + [SMALL_STATE(2483)] = 112606, + [SMALL_STATE(2484)] = 112624, + [SMALL_STATE(2485)] = 112642, + [SMALL_STATE(2486)] = 112660, + [SMALL_STATE(2487)] = 112678, + [SMALL_STATE(2488)] = 112692, + [SMALL_STATE(2489)] = 112708, + [SMALL_STATE(2490)] = 112726, + [SMALL_STATE(2491)] = 112744, + [SMALL_STATE(2492)] = 112762, + [SMALL_STATE(2493)] = 112780, + [SMALL_STATE(2494)] = 112798, + [SMALL_STATE(2495)] = 112816, + [SMALL_STATE(2496)] = 112834, + [SMALL_STATE(2497)] = 112852, + [SMALL_STATE(2498)] = 112870, + [SMALL_STATE(2499)] = 112888, + [SMALL_STATE(2500)] = 112906, + [SMALL_STATE(2501)] = 112924, + [SMALL_STATE(2502)] = 112944, + [SMALL_STATE(2503)] = 112962, + [SMALL_STATE(2504)] = 112980, + [SMALL_STATE(2505)] = 112998, + [SMALL_STATE(2506)] = 113016, + [SMALL_STATE(2507)] = 113034, + [SMALL_STATE(2508)] = 113050, + [SMALL_STATE(2509)] = 113066, + [SMALL_STATE(2510)] = 113084, + [SMALL_STATE(2511)] = 113102, + [SMALL_STATE(2512)] = 113120, + [SMALL_STATE(2513)] = 113138, + [SMALL_STATE(2514)] = 113156, + [SMALL_STATE(2515)] = 113176, + [SMALL_STATE(2516)] = 113194, + [SMALL_STATE(2517)] = 113212, + [SMALL_STATE(2518)] = 113230, + [SMALL_STATE(2519)] = 113248, + [SMALL_STATE(2520)] = 113266, + [SMALL_STATE(2521)] = 113286, + [SMALL_STATE(2522)] = 113304, + [SMALL_STATE(2523)] = 113322, + [SMALL_STATE(2524)] = 113340, + [SMALL_STATE(2525)] = 113360, + [SMALL_STATE(2526)] = 113380, + [SMALL_STATE(2527)] = 113398, + [SMALL_STATE(2528)] = 113416, + [SMALL_STATE(2529)] = 113434, + [SMALL_STATE(2530)] = 113452, + [SMALL_STATE(2531)] = 113466, + [SMALL_STATE(2532)] = 113484, + [SMALL_STATE(2533)] = 113502, + [SMALL_STATE(2534)] = 113520, + [SMALL_STATE(2535)] = 113538, + [SMALL_STATE(2536)] = 113556, + [SMALL_STATE(2537)] = 113576, + [SMALL_STATE(2538)] = 113594, + [SMALL_STATE(2539)] = 113612, + [SMALL_STATE(2540)] = 113630, + [SMALL_STATE(2541)] = 113648, + [SMALL_STATE(2542)] = 113666, + [SMALL_STATE(2543)] = 113684, + [SMALL_STATE(2544)] = 113704, + [SMALL_STATE(2545)] = 113722, + [SMALL_STATE(2546)] = 113740, + [SMALL_STATE(2547)] = 113758, + [SMALL_STATE(2548)] = 113776, + [SMALL_STATE(2549)] = 113794, + [SMALL_STATE(2550)] = 113812, + [SMALL_STATE(2551)] = 113830, + [SMALL_STATE(2552)] = 113848, + [SMALL_STATE(2553)] = 113866, + [SMALL_STATE(2554)] = 113883, + [SMALL_STATE(2555)] = 113896, + [SMALL_STATE(2556)] = 113913, + [SMALL_STATE(2557)] = 113930, + [SMALL_STATE(2558)] = 113947, + [SMALL_STATE(2559)] = 113964, + [SMALL_STATE(2560)] = 113981, + [SMALL_STATE(2561)] = 113996, + [SMALL_STATE(2562)] = 114013, + [SMALL_STATE(2563)] = 114030, + [SMALL_STATE(2564)] = 114047, + [SMALL_STATE(2565)] = 114064, + [SMALL_STATE(2566)] = 114081, + [SMALL_STATE(2567)] = 114094, + [SMALL_STATE(2568)] = 114111, + [SMALL_STATE(2569)] = 114128, + [SMALL_STATE(2570)] = 114145, + [SMALL_STATE(2571)] = 114162, + [SMALL_STATE(2572)] = 114179, + [SMALL_STATE(2573)] = 114196, + [SMALL_STATE(2574)] = 114213, + [SMALL_STATE(2575)] = 114230, + [SMALL_STATE(2576)] = 114247, + [SMALL_STATE(2577)] = 114264, + [SMALL_STATE(2578)] = 114281, + [SMALL_STATE(2579)] = 114298, + [SMALL_STATE(2580)] = 114315, + [SMALL_STATE(2581)] = 114332, + [SMALL_STATE(2582)] = 114349, + [SMALL_STATE(2583)] = 114366, + [SMALL_STATE(2584)] = 114383, + [SMALL_STATE(2585)] = 114398, + [SMALL_STATE(2586)] = 114415, + [SMALL_STATE(2587)] = 114432, + [SMALL_STATE(2588)] = 114447, + [SMALL_STATE(2589)] = 114464, + [SMALL_STATE(2590)] = 114481, + [SMALL_STATE(2591)] = 114498, + [SMALL_STATE(2592)] = 114515, + [SMALL_STATE(2593)] = 114532, + [SMALL_STATE(2594)] = 114549, + [SMALL_STATE(2595)] = 114566, + [SMALL_STATE(2596)] = 114583, + [SMALL_STATE(2597)] = 114598, + [SMALL_STATE(2598)] = 114615, + [SMALL_STATE(2599)] = 114632, + [SMALL_STATE(2600)] = 114649, + [SMALL_STATE(2601)] = 114666, + [SMALL_STATE(2602)] = 114683, + [SMALL_STATE(2603)] = 114698, + [SMALL_STATE(2604)] = 114715, + [SMALL_STATE(2605)] = 114730, + [SMALL_STATE(2606)] = 114747, + [SMALL_STATE(2607)] = 114764, + [SMALL_STATE(2608)] = 114781, + [SMALL_STATE(2609)] = 114798, + [SMALL_STATE(2610)] = 114815, + [SMALL_STATE(2611)] = 114827, + [SMALL_STATE(2612)] = 114839, + [SMALL_STATE(2613)] = 114853, + [SMALL_STATE(2614)] = 114867, + [SMALL_STATE(2615)] = 114879, + [SMALL_STATE(2616)] = 114891, + [SMALL_STATE(2617)] = 114903, + [SMALL_STATE(2618)] = 114915, + [SMALL_STATE(2619)] = 114927, + [SMALL_STATE(2620)] = 114939, + [SMALL_STATE(2621)] = 114951, + [SMALL_STATE(2622)] = 114963, + [SMALL_STATE(2623)] = 114975, + [SMALL_STATE(2624)] = 114987, + [SMALL_STATE(2625)] = 115001, + [SMALL_STATE(2626)] = 115013, + [SMALL_STATE(2627)] = 115025, + [SMALL_STATE(2628)] = 115037, + [SMALL_STATE(2629)] = 115049, + [SMALL_STATE(2630)] = 115061, + [SMALL_STATE(2631)] = 115073, + [SMALL_STATE(2632)] = 115087, + [SMALL_STATE(2633)] = 115099, + [SMALL_STATE(2634)] = 115113, + [SMALL_STATE(2635)] = 115125, + [SMALL_STATE(2636)] = 115139, + [SMALL_STATE(2637)] = 115151, + [SMALL_STATE(2638)] = 115163, + [SMALL_STATE(2639)] = 115177, + [SMALL_STATE(2640)] = 115191, + [SMALL_STATE(2641)] = 115203, + [SMALL_STATE(2642)] = 115217, + [SMALL_STATE(2643)] = 115231, + [SMALL_STATE(2644)] = 115245, + [SMALL_STATE(2645)] = 115257, + [SMALL_STATE(2646)] = 115269, + [SMALL_STATE(2647)] = 115281, + [SMALL_STATE(2648)] = 115290, + [SMALL_STATE(2649)] = 115301, + [SMALL_STATE(2650)] = 115312, + [SMALL_STATE(2651)] = 115323, + [SMALL_STATE(2652)] = 115334, + [SMALL_STATE(2653)] = 115343, + [SMALL_STATE(2654)] = 115354, + [SMALL_STATE(2655)] = 115365, + [SMALL_STATE(2656)] = 115374, + [SMALL_STATE(2657)] = 115385, + [SMALL_STATE(2658)] = 115396, + [SMALL_STATE(2659)] = 115407, + [SMALL_STATE(2660)] = 115416, + [SMALL_STATE(2661)] = 115427, + [SMALL_STATE(2662)] = 115438, + [SMALL_STATE(2663)] = 115449, + [SMALL_STATE(2664)] = 115458, + [SMALL_STATE(2665)] = 115469, + [SMALL_STATE(2666)] = 115480, + [SMALL_STATE(2667)] = 115489, + [SMALL_STATE(2668)] = 115500, + [SMALL_STATE(2669)] = 115511, + [SMALL_STATE(2670)] = 115520, + [SMALL_STATE(2671)] = 115531, + [SMALL_STATE(2672)] = 115542, + [SMALL_STATE(2673)] = 115553, + [SMALL_STATE(2674)] = 115562, + [SMALL_STATE(2675)] = 115573, + [SMALL_STATE(2676)] = 115584, + [SMALL_STATE(2677)] = 115595, + [SMALL_STATE(2678)] = 115606, + [SMALL_STATE(2679)] = 115615, + [SMALL_STATE(2680)] = 115626, + [SMALL_STATE(2681)] = 115635, + [SMALL_STATE(2682)] = 115646, + [SMALL_STATE(2683)] = 115657, + [SMALL_STATE(2684)] = 115666, + [SMALL_STATE(2685)] = 115675, + [SMALL_STATE(2686)] = 115686, + [SMALL_STATE(2687)] = 115695, + [SMALL_STATE(2688)] = 115706, + [SMALL_STATE(2689)] = 115715, + [SMALL_STATE(2690)] = 115726, + [SMALL_STATE(2691)] = 115737, + [SMALL_STATE(2692)] = 115746, + [SMALL_STATE(2693)] = 115757, + [SMALL_STATE(2694)] = 115768, + [SMALL_STATE(2695)] = 115777, + [SMALL_STATE(2696)] = 115788, + [SMALL_STATE(2697)] = 115799, + [SMALL_STATE(2698)] = 115808, + [SMALL_STATE(2699)] = 115819, + [SMALL_STATE(2700)] = 115830, + [SMALL_STATE(2701)] = 115839, + [SMALL_STATE(2702)] = 115850, + [SMALL_STATE(2703)] = 115861, + [SMALL_STATE(2704)] = 115870, + [SMALL_STATE(2705)] = 115881, + [SMALL_STATE(2706)] = 115890, + [SMALL_STATE(2707)] = 115899, + [SMALL_STATE(2708)] = 115910, + [SMALL_STATE(2709)] = 115921, + [SMALL_STATE(2710)] = 115930, + [SMALL_STATE(2711)] = 115941, + [SMALL_STATE(2712)] = 115950, + [SMALL_STATE(2713)] = 115959, + [SMALL_STATE(2714)] = 115970, + [SMALL_STATE(2715)] = 115981, + [SMALL_STATE(2716)] = 115990, + [SMALL_STATE(2717)] = 116001, + [SMALL_STATE(2718)] = 116012, + [SMALL_STATE(2719)] = 116021, + [SMALL_STATE(2720)] = 116032, + [SMALL_STATE(2721)] = 116043, + [SMALL_STATE(2722)] = 116052, + [SMALL_STATE(2723)] = 116063, + [SMALL_STATE(2724)] = 116074, + [SMALL_STATE(2725)] = 116083, + [SMALL_STATE(2726)] = 116094, + [SMALL_STATE(2727)] = 116105, + [SMALL_STATE(2728)] = 116114, + [SMALL_STATE(2729)] = 116125, + [SMALL_STATE(2730)] = 116134, + [SMALL_STATE(2731)] = 116143, + [SMALL_STATE(2732)] = 116154, + [SMALL_STATE(2733)] = 116165, + [SMALL_STATE(2734)] = 116174, + [SMALL_STATE(2735)] = 116185, + [SMALL_STATE(2736)] = 116194, + [SMALL_STATE(2737)] = 116203, + [SMALL_STATE(2738)] = 116214, + [SMALL_STATE(2739)] = 116225, + [SMALL_STATE(2740)] = 116234, + [SMALL_STATE(2741)] = 116245, + [SMALL_STATE(2742)] = 116256, + [SMALL_STATE(2743)] = 116265, + [SMALL_STATE(2744)] = 116276, + [SMALL_STATE(2745)] = 116287, + [SMALL_STATE(2746)] = 116296, + [SMALL_STATE(2747)] = 116307, + [SMALL_STATE(2748)] = 116316, + [SMALL_STATE(2749)] = 116327, + [SMALL_STATE(2750)] = 116338, + [SMALL_STATE(2751)] = 116347, + [SMALL_STATE(2752)] = 116356, + [SMALL_STATE(2753)] = 116365, + [SMALL_STATE(2754)] = 116376, + [SMALL_STATE(2755)] = 116387, + [SMALL_STATE(2756)] = 116396, + [SMALL_STATE(2757)] = 116407, + [SMALL_STATE(2758)] = 116416, + [SMALL_STATE(2759)] = 116427, + [SMALL_STATE(2760)] = 116438, + [SMALL_STATE(2761)] = 116447, + [SMALL_STATE(2762)] = 116458, + [SMALL_STATE(2763)] = 116467, + [SMALL_STATE(2764)] = 116478, + [SMALL_STATE(2765)] = 116487, + [SMALL_STATE(2766)] = 116496, + [SMALL_STATE(2767)] = 116507, + [SMALL_STATE(2768)] = 116516, + [SMALL_STATE(2769)] = 116527, + [SMALL_STATE(2770)] = 116538, + [SMALL_STATE(2771)] = 116547, + [SMALL_STATE(2772)] = 116558, + [SMALL_STATE(2773)] = 116567, + [SMALL_STATE(2774)] = 116578, + [SMALL_STATE(2775)] = 116589, + [SMALL_STATE(2776)] = 116598, + [SMALL_STATE(2777)] = 116609, + [SMALL_STATE(2778)] = 116618, + [SMALL_STATE(2779)] = 116629, + [SMALL_STATE(2780)] = 116638, + [SMALL_STATE(2781)] = 116647, + [SMALL_STATE(2782)] = 116658, + [SMALL_STATE(2783)] = 116667, + [SMALL_STATE(2784)] = 116678, + [SMALL_STATE(2785)] = 116689, + [SMALL_STATE(2786)] = 116698, + [SMALL_STATE(2787)] = 116709, + [SMALL_STATE(2788)] = 116718, + [SMALL_STATE(2789)] = 116729, + [SMALL_STATE(2790)] = 116738, + [SMALL_STATE(2791)] = 116747, + [SMALL_STATE(2792)] = 116758, + [SMALL_STATE(2793)] = 116767, + [SMALL_STATE(2794)] = 116778, + [SMALL_STATE(2795)] = 116789, + [SMALL_STATE(2796)] = 116798, + [SMALL_STATE(2797)] = 116809, + [SMALL_STATE(2798)] = 116818, + [SMALL_STATE(2799)] = 116829, + [SMALL_STATE(2800)] = 116840, + [SMALL_STATE(2801)] = 116849, + [SMALL_STATE(2802)] = 116860, + [SMALL_STATE(2803)] = 116869, + [SMALL_STATE(2804)] = 116880, + [SMALL_STATE(2805)] = 116891, + [SMALL_STATE(2806)] = 116900, + [SMALL_STATE(2807)] = 116911, + [SMALL_STATE(2808)] = 116920, + [SMALL_STATE(2809)] = 116931, + [SMALL_STATE(2810)] = 116942, + [SMALL_STATE(2811)] = 116951, + [SMALL_STATE(2812)] = 116962, + [SMALL_STATE(2813)] = 116971, + [SMALL_STATE(2814)] = 116982, + [SMALL_STATE(2815)] = 116993, + [SMALL_STATE(2816)] = 117002, + [SMALL_STATE(2817)] = 117013, + [SMALL_STATE(2818)] = 117022, + [SMALL_STATE(2819)] = 117033, + [SMALL_STATE(2820)] = 117044, + [SMALL_STATE(2821)] = 117053, + [SMALL_STATE(2822)] = 117064, + [SMALL_STATE(2823)] = 117073, + [SMALL_STATE(2824)] = 117084, + [SMALL_STATE(2825)] = 117095, + [SMALL_STATE(2826)] = 117104, + [SMALL_STATE(2827)] = 117115, + [SMALL_STATE(2828)] = 117124, + [SMALL_STATE(2829)] = 117135, + [SMALL_STATE(2830)] = 117146, + [SMALL_STATE(2831)] = 117155, + [SMALL_STATE(2832)] = 117166, + [SMALL_STATE(2833)] = 117175, + [SMALL_STATE(2834)] = 117186, + [SMALL_STATE(2835)] = 117197, + [SMALL_STATE(2836)] = 117206, + [SMALL_STATE(2837)] = 117217, + [SMALL_STATE(2838)] = 117226, + [SMALL_STATE(2839)] = 117237, + [SMALL_STATE(2840)] = 117248, + [SMALL_STATE(2841)] = 117257, + [SMALL_STATE(2842)] = 117268, + [SMALL_STATE(2843)] = 117277, + [SMALL_STATE(2844)] = 117288, + [SMALL_STATE(2845)] = 117299, + [SMALL_STATE(2846)] = 117308, + [SMALL_STATE(2847)] = 117319, + [SMALL_STATE(2848)] = 117328, + [SMALL_STATE(2849)] = 117339, + [SMALL_STATE(2850)] = 117350, + [SMALL_STATE(2851)] = 117359, + [SMALL_STATE(2852)] = 117370, + [SMALL_STATE(2853)] = 117379, + [SMALL_STATE(2854)] = 117390, + [SMALL_STATE(2855)] = 117401, + [SMALL_STATE(2856)] = 117410, + [SMALL_STATE(2857)] = 117421, + [SMALL_STATE(2858)] = 117430, + [SMALL_STATE(2859)] = 117441, + [SMALL_STATE(2860)] = 117452, + [SMALL_STATE(2861)] = 117461, + [SMALL_STATE(2862)] = 117472, + [SMALL_STATE(2863)] = 117481, + [SMALL_STATE(2864)] = 117492, + [SMALL_STATE(2865)] = 117503, + [SMALL_STATE(2866)] = 117512, + [SMALL_STATE(2867)] = 117523, + [SMALL_STATE(2868)] = 117532, + [SMALL_STATE(2869)] = 117543, + [SMALL_STATE(2870)] = 117554, + [SMALL_STATE(2871)] = 117563, + [SMALL_STATE(2872)] = 117572, + [SMALL_STATE(2873)] = 117581, + [SMALL_STATE(2874)] = 117592, + [SMALL_STATE(2875)] = 117603, + [SMALL_STATE(2876)] = 117612, + [SMALL_STATE(2877)] = 117623, + [SMALL_STATE(2878)] = 117632, + [SMALL_STATE(2879)] = 117643, + [SMALL_STATE(2880)] = 117652, + [SMALL_STATE(2881)] = 117661, + [SMALL_STATE(2882)] = 117672, + [SMALL_STATE(2883)] = 117681, + [SMALL_STATE(2884)] = 117692, + [SMALL_STATE(2885)] = 117703, + [SMALL_STATE(2886)] = 117712, + [SMALL_STATE(2887)] = 117723, + [SMALL_STATE(2888)] = 117732, + [SMALL_STATE(2889)] = 117743, + [SMALL_STATE(2890)] = 117754, + [SMALL_STATE(2891)] = 117763, + [SMALL_STATE(2892)] = 117774, + [SMALL_STATE(2893)] = 117783, + [SMALL_STATE(2894)] = 117794, + [SMALL_STATE(2895)] = 117805, + [SMALL_STATE(2896)] = 117814, + [SMALL_STATE(2897)] = 117825, + [SMALL_STATE(2898)] = 117834, + [SMALL_STATE(2899)] = 117845, + [SMALL_STATE(2900)] = 117856, + [SMALL_STATE(2901)] = 117865, + [SMALL_STATE(2902)] = 117876, + [SMALL_STATE(2903)] = 117885, + [SMALL_STATE(2904)] = 117896, + [SMALL_STATE(2905)] = 117905, + [SMALL_STATE(2906)] = 117916, + [SMALL_STATE(2907)] = 117927, + [SMALL_STATE(2908)] = 117938, + [SMALL_STATE(2909)] = 117949, + [SMALL_STATE(2910)] = 117960, + [SMALL_STATE(2911)] = 117969, + [SMALL_STATE(2912)] = 117980, + [SMALL_STATE(2913)] = 117991, + [SMALL_STATE(2914)] = 118002, + [SMALL_STATE(2915)] = 118013, + [SMALL_STATE(2916)] = 118024, + [SMALL_STATE(2917)] = 118035, + [SMALL_STATE(2918)] = 118044, + [SMALL_STATE(2919)] = 118055, + [SMALL_STATE(2920)] = 118066, + [SMALL_STATE(2921)] = 118077, + [SMALL_STATE(2922)] = 118088, + [SMALL_STATE(2923)] = 118099, + [SMALL_STATE(2924)] = 118110, + [SMALL_STATE(2925)] = 118121, + [SMALL_STATE(2926)] = 118132, + [SMALL_STATE(2927)] = 118143, + [SMALL_STATE(2928)] = 118154, + [SMALL_STATE(2929)] = 118165, + [SMALL_STATE(2930)] = 118176, + [SMALL_STATE(2931)] = 118187, + [SMALL_STATE(2932)] = 118198, + [SMALL_STATE(2933)] = 118207, + [SMALL_STATE(2934)] = 118218, + [SMALL_STATE(2935)] = 118229, + [SMALL_STATE(2936)] = 118240, + [SMALL_STATE(2937)] = 118251, + [SMALL_STATE(2938)] = 118262, + [SMALL_STATE(2939)] = 118273, + [SMALL_STATE(2940)] = 118284, + [SMALL_STATE(2941)] = 118295, + [SMALL_STATE(2942)] = 118306, + [SMALL_STATE(2943)] = 118317, + [SMALL_STATE(2944)] = 118328, + [SMALL_STATE(2945)] = 118337, + [SMALL_STATE(2946)] = 118348, + [SMALL_STATE(2947)] = 118359, + [SMALL_STATE(2948)] = 118370, + [SMALL_STATE(2949)] = 118381, + [SMALL_STATE(2950)] = 118392, + [SMALL_STATE(2951)] = 118403, + [SMALL_STATE(2952)] = 118414, + [SMALL_STATE(2953)] = 118425, + [SMALL_STATE(2954)] = 118436, + [SMALL_STATE(2955)] = 118447, + [SMALL_STATE(2956)] = 118458, + [SMALL_STATE(2957)] = 118469, + [SMALL_STATE(2958)] = 118480, + [SMALL_STATE(2959)] = 118491, + [SMALL_STATE(2960)] = 118502, + [SMALL_STATE(2961)] = 118513, + [SMALL_STATE(2962)] = 118524, + [SMALL_STATE(2963)] = 118535, + [SMALL_STATE(2964)] = 118546, + [SMALL_STATE(2965)] = 118557, + [SMALL_STATE(2966)] = 118568, + [SMALL_STATE(2967)] = 118579, + [SMALL_STATE(2968)] = 118590, + [SMALL_STATE(2969)] = 118601, + [SMALL_STATE(2970)] = 118612, + [SMALL_STATE(2971)] = 118623, + [SMALL_STATE(2972)] = 118634, + [SMALL_STATE(2973)] = 118645, + [SMALL_STATE(2974)] = 118656, + [SMALL_STATE(2975)] = 118667, + [SMALL_STATE(2976)] = 118678, + [SMALL_STATE(2977)] = 118689, + [SMALL_STATE(2978)] = 118700, + [SMALL_STATE(2979)] = 118711, + [SMALL_STATE(2980)] = 118722, + [SMALL_STATE(2981)] = 118733, + [SMALL_STATE(2982)] = 118744, + [SMALL_STATE(2983)] = 118755, + [SMALL_STATE(2984)] = 118766, + [SMALL_STATE(2985)] = 118777, + [SMALL_STATE(2986)] = 118788, + [SMALL_STATE(2987)] = 118799, + [SMALL_STATE(2988)] = 118810, + [SMALL_STATE(2989)] = 118821, + [SMALL_STATE(2990)] = 118832, + [SMALL_STATE(2991)] = 118843, + [SMALL_STATE(2992)] = 118854, + [SMALL_STATE(2993)] = 118865, + [SMALL_STATE(2994)] = 118876, + [SMALL_STATE(2995)] = 118887, + [SMALL_STATE(2996)] = 118898, + [SMALL_STATE(2997)] = 118909, + [SMALL_STATE(2998)] = 118920, + [SMALL_STATE(2999)] = 118931, + [SMALL_STATE(3000)] = 118942, + [SMALL_STATE(3001)] = 118953, + [SMALL_STATE(3002)] = 118964, + [SMALL_STATE(3003)] = 118975, + [SMALL_STATE(3004)] = 118986, + [SMALL_STATE(3005)] = 118997, + [SMALL_STATE(3006)] = 119008, + [SMALL_STATE(3007)] = 119019, + [SMALL_STATE(3008)] = 119030, + [SMALL_STATE(3009)] = 119041, + [SMALL_STATE(3010)] = 119052, + [SMALL_STATE(3011)] = 119063, + [SMALL_STATE(3012)] = 119074, + [SMALL_STATE(3013)] = 119085, + [SMALL_STATE(3014)] = 119096, + [SMALL_STATE(3015)] = 119107, + [SMALL_STATE(3016)] = 119118, + [SMALL_STATE(3017)] = 119129, + [SMALL_STATE(3018)] = 119140, + [SMALL_STATE(3019)] = 119151, + [SMALL_STATE(3020)] = 119162, + [SMALL_STATE(3021)] = 119173, + [SMALL_STATE(3022)] = 119184, + [SMALL_STATE(3023)] = 119195, + [SMALL_STATE(3024)] = 119206, + [SMALL_STATE(3025)] = 119215, + [SMALL_STATE(3026)] = 119226, + [SMALL_STATE(3027)] = 119237, + [SMALL_STATE(3028)] = 119248, + [SMALL_STATE(3029)] = 119259, + [SMALL_STATE(3030)] = 119270, + [SMALL_STATE(3031)] = 119281, + [SMALL_STATE(3032)] = 119292, + [SMALL_STATE(3033)] = 119303, + [SMALL_STATE(3034)] = 119314, + [SMALL_STATE(3035)] = 119325, + [SMALL_STATE(3036)] = 119336, + [SMALL_STATE(3037)] = 119347, + [SMALL_STATE(3038)] = 119358, + [SMALL_STATE(3039)] = 119369, + [SMALL_STATE(3040)] = 119380, + [SMALL_STATE(3041)] = 119391, + [SMALL_STATE(3042)] = 119402, + [SMALL_STATE(3043)] = 119413, + [SMALL_STATE(3044)] = 119424, + [SMALL_STATE(3045)] = 119435, + [SMALL_STATE(3046)] = 119446, + [SMALL_STATE(3047)] = 119457, + [SMALL_STATE(3048)] = 119468, + [SMALL_STATE(3049)] = 119479, + [SMALL_STATE(3050)] = 119490, + [SMALL_STATE(3051)] = 119501, + [SMALL_STATE(3052)] = 119512, + [SMALL_STATE(3053)] = 119523, + [SMALL_STATE(3054)] = 119534, + [SMALL_STATE(3055)] = 119545, + [SMALL_STATE(3056)] = 119556, + [SMALL_STATE(3057)] = 119567, + [SMALL_STATE(3058)] = 119578, + [SMALL_STATE(3059)] = 119589, + [SMALL_STATE(3060)] = 119600, + [SMALL_STATE(3061)] = 119611, + [SMALL_STATE(3062)] = 119622, + [SMALL_STATE(3063)] = 119633, + [SMALL_STATE(3064)] = 119644, + [SMALL_STATE(3065)] = 119655, + [SMALL_STATE(3066)] = 119666, + [SMALL_STATE(3067)] = 119677, + [SMALL_STATE(3068)] = 119688, + [SMALL_STATE(3069)] = 119699, + [SMALL_STATE(3070)] = 119710, + [SMALL_STATE(3071)] = 119721, + [SMALL_STATE(3072)] = 119732, + [SMALL_STATE(3073)] = 119743, + [SMALL_STATE(3074)] = 119754, + [SMALL_STATE(3075)] = 119765, + [SMALL_STATE(3076)] = 119776, + [SMALL_STATE(3077)] = 119787, + [SMALL_STATE(3078)] = 119798, + [SMALL_STATE(3079)] = 119809, + [SMALL_STATE(3080)] = 119820, + [SMALL_STATE(3081)] = 119831, + [SMALL_STATE(3082)] = 119842, + [SMALL_STATE(3083)] = 119853, + [SMALL_STATE(3084)] = 119864, + [SMALL_STATE(3085)] = 119875, + [SMALL_STATE(3086)] = 119886, + [SMALL_STATE(3087)] = 119897, + [SMALL_STATE(3088)] = 119908, + [SMALL_STATE(3089)] = 119919, + [SMALL_STATE(3090)] = 119930, + [SMALL_STATE(3091)] = 119941, + [SMALL_STATE(3092)] = 119952, + [SMALL_STATE(3093)] = 119963, + [SMALL_STATE(3094)] = 119974, + [SMALL_STATE(3095)] = 119985, + [SMALL_STATE(3096)] = 119996, + [SMALL_STATE(3097)] = 120007, + [SMALL_STATE(3098)] = 120018, + [SMALL_STATE(3099)] = 120029, + [SMALL_STATE(3100)] = 120040, + [SMALL_STATE(3101)] = 120051, + [SMALL_STATE(3102)] = 120062, + [SMALL_STATE(3103)] = 120073, + [SMALL_STATE(3104)] = 120084, + [SMALL_STATE(3105)] = 120095, + [SMALL_STATE(3106)] = 120106, + [SMALL_STATE(3107)] = 120117, + [SMALL_STATE(3108)] = 120128, + [SMALL_STATE(3109)] = 120139, + [SMALL_STATE(3110)] = 120150, + [SMALL_STATE(3111)] = 120161, + [SMALL_STATE(3112)] = 120172, + [SMALL_STATE(3113)] = 120183, + [SMALL_STATE(3114)] = 120194, + [SMALL_STATE(3115)] = 120205, + [SMALL_STATE(3116)] = 120216, + [SMALL_STATE(3117)] = 120227, + [SMALL_STATE(3118)] = 120238, + [SMALL_STATE(3119)] = 120247, + [SMALL_STATE(3120)] = 120258, + [SMALL_STATE(3121)] = 120269, + [SMALL_STATE(3122)] = 120280, + [SMALL_STATE(3123)] = 120291, + [SMALL_STATE(3124)] = 120302, + [SMALL_STATE(3125)] = 120313, + [SMALL_STATE(3126)] = 120324, + [SMALL_STATE(3127)] = 120335, + [SMALL_STATE(3128)] = 120346, + [SMALL_STATE(3129)] = 120357, + [SMALL_STATE(3130)] = 120368, + [SMALL_STATE(3131)] = 120379, + [SMALL_STATE(3132)] = 120390, + [SMALL_STATE(3133)] = 120401, + [SMALL_STATE(3134)] = 120412, + [SMALL_STATE(3135)] = 120423, + [SMALL_STATE(3136)] = 120434, + [SMALL_STATE(3137)] = 120445, + [SMALL_STATE(3138)] = 120456, + [SMALL_STATE(3139)] = 120467, + [SMALL_STATE(3140)] = 120478, + [SMALL_STATE(3141)] = 120489, + [SMALL_STATE(3142)] = 120500, + [SMALL_STATE(3143)] = 120511, + [SMALL_STATE(3144)] = 120522, + [SMALL_STATE(3145)] = 120533, + [SMALL_STATE(3146)] = 120544, + [SMALL_STATE(3147)] = 120555, + [SMALL_STATE(3148)] = 120566, + [SMALL_STATE(3149)] = 120577, + [SMALL_STATE(3150)] = 120588, + [SMALL_STATE(3151)] = 120599, + [SMALL_STATE(3152)] = 120610, + [SMALL_STATE(3153)] = 120621, + [SMALL_STATE(3154)] = 120632, + [SMALL_STATE(3155)] = 120643, + [SMALL_STATE(3156)] = 120654, + [SMALL_STATE(3157)] = 120665, + [SMALL_STATE(3158)] = 120676, + [SMALL_STATE(3159)] = 120687, + [SMALL_STATE(3160)] = 120698, + [SMALL_STATE(3161)] = 120709, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -119526,2548 +126589,2729 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_type, 2, .production_id = 7), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_type, 2, .production_id = 7), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_type, 1, .production_id = 7), - [297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_type, 1, .production_id = 7), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), SHIFT_REPEAT(2177), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), SHIFT_REPEAT(212), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 2, .production_id = 4), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 2, .production_id = 4), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_subexpression, 1), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 1, .production_id = 3), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 1, .production_id = 3), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 3, .production_id = 4), - [325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 3, .production_id = 4), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 3), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_subexpression, 3), - [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 2, .production_id = 3), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 2, .production_id = 3), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 4, .production_id = 4), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 4, .production_id = 4), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 3, .production_id = 3), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 3, .production_id = 3), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(3), - [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2319), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(674), - [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(677), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(679), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(679), - [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2694), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2696), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subexpression_token, 1), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subexpression_token, 1), - [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 2), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 2), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(31), - [852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2358), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(716), - [858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(702), - [861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(690), - [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(690), - [867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2697), - [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2699), - [873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(39), - [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2334), - [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(728), - [882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(687), - [885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(734), - [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(734), - [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2682), - [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2684), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(21), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2391), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(709), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(712), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(713), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(713), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2706), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2708), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(19), - [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2381), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(732), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(737), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(738), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(738), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2712), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2714), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(68), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2342), - [1109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(772), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(769), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(768), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(768), - [1121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2628), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2630), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(36), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2326), - [1173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(804), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(801), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(798), - [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(798), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2688), - [1188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2690), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(79), - [1232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2360), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(861), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(873), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(887), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(887), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2603), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2605), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(18), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2374), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(909), - [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(900), - [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(899), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(899), - [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2715), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2717), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(26), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2380), - [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(850), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(856), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(857), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(857), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2703), - [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2705), - [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(64), - [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2373), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(874), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(877), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(878), - [1332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(878), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2643), - [1338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2645), - [1341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(51), - [1344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2389), - [1347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(933), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(930), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(929), - [1356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(929), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2661), - [1362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2663), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(20), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2320), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(907), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(912), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(913), - [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(913), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2709), - [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2711), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(12), - [1430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2355), - [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(820), - [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(810), - [1439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(807), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(807), - [1445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2727), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2729), - [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(47), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2330), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(841), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(838), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(837), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(837), - [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2673), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2675), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(38), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2321), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1126), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1129), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1130), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1130), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2685), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2687), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [1543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(72), - [1546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2353), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(982), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1062), - [1555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1058), - [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1058), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2730), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2732), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(71), - [1570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2332), - [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1090), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1136), - [1579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1138), - [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1138), - [1585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2618), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2620), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(120), - [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2341), - [1603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(969), - [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(948), - [1609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1053), - [1612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1053), - [1615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2508), - [1618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2489), - [1621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(17), - [1624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2368), - [1627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1011), - [1630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1019), - [1633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1023), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1023), - [1639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2718), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2720), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [1661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(114), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2339), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(967), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(991), - [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1084), - [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1084), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2548), - [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2532), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(46), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2350), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1063), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1007), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(954), - [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(954), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2676), - [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2678), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(56), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2385), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(975), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(972), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(971), - [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(971), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2653), - [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2655), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(122), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2387), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1210), - [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1203), - [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1259), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1259), - [1785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2518), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2624), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(78), - [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2322), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1241), - [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1186), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1282), - [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1282), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2608), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2610), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(65), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2367), - [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1218), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1225), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1226), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1226), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2638), - [1858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2640), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(77), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2325), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1261), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1252), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1251), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1251), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2613), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2615), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(66), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2359), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1220), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1227), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1239), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1239), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2633), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2635), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(100), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2377), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1347), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1344), - [1927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1334), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1334), - [1933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2582), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2578), - [1939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(83), - [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2327), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1297), - [1948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1301), - [1951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1302), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1302), - [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2598), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2600), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, .production_id = 17), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, .production_id = 17), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 4, .production_id = 27), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 4, .production_id = 27), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 3, .production_id = 20), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 3, .production_id = 20), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_control_expression, 1), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_control_expression, 1), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 5, .production_id = 30), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 5, .production_id = 30), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator_expression, 2, .production_id = 18), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator_expression, 2, .production_id = 18), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 6, .production_id = 32), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 6, .production_id = 32), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_statement, 3, .production_id = 16), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_statement, 3, .production_id = 16), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_subexpression, 3), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 1), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 1), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 17), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 17), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subexpression, 1), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subexpression, 1), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator_expression, 3, .production_id = 21), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator_expression, 3, .production_id = 21), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 4), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_condition_repeat1, 4), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_subexpression, 1), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_subexpression, 1), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 2), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 2), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_subexpression, 3), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 3), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 3), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_name, 1), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_name, 1), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_name, 2), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_name, 2), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_subexpression, 1), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_argument, 1), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_argument, 1), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 6, .production_id = 35), - [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 6, .production_id = 35), - [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 1), - [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 1), - [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_name, 3), - [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_name, 3), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_subexpression, 3), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 34), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 34), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(30), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2369), - [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1560), - [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1552), - [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1550), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1550), - [2149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2700), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2702), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 7), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 7), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, .production_id = 31), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 6, .production_id = 31), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_type, 1, .production_id = 7), + [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_type, 1, .production_id = 7), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_type, 2, .production_id = 7), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parametrized_type, 2, .production_id = 7), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), SHIFT_REPEAT(2300), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parametrized_type_repeat1, 2), SHIFT_REPEAT(170), + [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 1, .production_id = 3), + [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 1, .production_id = 3), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_subexpression, 1), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 2, .production_id = 4), + [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 2, .production_id = 4), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), + [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 3), + [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_subexpression, 3), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 3, .production_id = 4), + [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 3, .production_id = 4), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 2, .production_id = 3), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 2, .production_id = 3), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1), + [333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1), + [335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 3, .production_id = 3), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 3, .production_id = 3), + [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_expression, 4, .production_id = 4), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_expression, 4, .production_id = 4), + [343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subexpression_token, 1), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subexpression_token, 1), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call_expression, 2, .production_id = 2), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call_expression, 2, .production_id = 2), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(107), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2547), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(684), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(742), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(860), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(860), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2832), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2830), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(73), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2535), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(739), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(786), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(934), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(934), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2812), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2810), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(109), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2489), + [917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(738), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(823), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(876), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(876), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2837), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2835), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(56), + [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2498), + [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(725), + [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(811), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(930), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(930), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2730), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2727), + [1027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(138), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2505), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(716), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(842), + [1039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(972), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(972), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2862), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2860), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(143), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2540), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(775), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(861), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(961), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(961), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2872), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2870), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(120), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2528), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(845), + [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(900), + [1193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1097), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1097), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2857), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2855), + [1205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(95), + [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2506), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(836), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(962), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1199), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1199), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2822), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2820), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(140), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2492), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(772), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(882), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1114), + [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1114), + [1261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2867), + [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2865), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(102), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2484), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(804), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(891), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1161), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1161), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2877), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2875), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(19), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2542), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(792), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(924), + [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1079), + [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1079), + [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2792), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2790), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(25), + [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2470), + [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(761), + [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(910), + [1403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(999), + [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(999), + [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2772), + [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2770), + [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(26), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2475), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(864), + [1424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(971), + [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1189), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1189), + [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2897), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2895), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [1469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(46), + [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2517), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(853), + [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(933), + [1481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1152), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1152), + [1487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2747), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2745), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(86), + [1496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2538), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(819), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(954), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1084), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1084), + [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2700), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2697), + [1517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(69), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2532), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(984), + [1526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1082), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1259), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1259), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2718), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2715), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(142), + [1560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2548), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(822), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1094), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1242), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1242), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2711), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2729), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [1595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2), + [1598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2469), + [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(913), + [1604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1078), + [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1218), + [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1218), + [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2817), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2815), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(72), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2479), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(940), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1096), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1222), + [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1222), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2882), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2880), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(16), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2550), + [1665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(965), + [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1018), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1265), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1265), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2797), + [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2795), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(32), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2467), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(928), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1104), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1279), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1279), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2762), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2760), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(45), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2477), + [1727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(870), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1113), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1219), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1219), + [1739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2902), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2900), + [1745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(97), + [1748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2519), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(731), + [1754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1039), + [1757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1268), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1268), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2764), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2789), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [1783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(80), + [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2544), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1165), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1301), + [1795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1320), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1320), + [1801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2706), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2703), + [1807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(79), + [1810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2504), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1154), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1285), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1348), + [1822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1348), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2712), + [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2709), + [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(47), + [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2527), + [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1101), + [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1287), + [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1331), + [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1331), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2742), + [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2739), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(82), + [1872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2503), + [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(746), + [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1299), + [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1344), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1344), + [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2779), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2871), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(50), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2472), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1073), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1258), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1333), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1333), + [1925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2736), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2733), + [1931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(125), + [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2521), + [1937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1290), + [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1319), + [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1359), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1359), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2688), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2686), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(129), + [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2496), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1228), + [1964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1323), + [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1372), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1372), + [1973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2647), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2673), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefixed_expression, 1), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefixed_expression, 1), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, .production_id = 17), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, .production_id = 17), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 3), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 3), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 2), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 2), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 3, .production_id = 20), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 3, .production_id = 20), + [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 5, .production_id = 31), + [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 5, .production_id = 31), + [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_control_expression, 1), + [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_control_expression, 1), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_name, 1), + [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_name, 1), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 6, .production_id = 33), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 6, .production_id = 33), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_name, 2), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_name, 2), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator_expression, 2, .production_id = 18), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator_expression, 2, .production_id = 18), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_function, 4, .production_id = 28), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_function, 4, .production_id = 28), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_name, 3), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_name, 3), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_name_expression, 1), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_name_expression, 1), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subexpression, 1), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subexpression, 1), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_statement, 3, .production_id = 16), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_statement, 3, .production_id = 16), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator_expression, 3, .production_id = 21), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator_expression, 3, .production_id = 21), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 17), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 17), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_expression, 3, .production_id = 22), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_expression, 3, .production_id = 22), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 4), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_condition_repeat1, 4), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_subexpression, 1), + [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 6, .production_id = 36), + [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 6, .production_id = 36), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 35), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 35), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_subexpression, 3), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_argument, 1), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_argument, 1), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_loop, 4, .production_id = 26), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_loop, 4, .production_id = 26), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 4, .production_id = 27), + [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 4, .production_id = 27), [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 6), [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 6), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_loop, 2, .production_id = 16), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_loop, 2, .production_id = 16), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_loop, 4, .production_id = 26), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_loop, 4, .production_id = 26), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_control, 1), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_control, 1), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superexpression, 1), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superexpression, 1), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_loop, 4, .production_id = 25), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_loop, 4, .production_id = 25), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(97), - [2206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2363), - [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1639), - [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1636), - [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1632), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1632), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2588), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2584), - [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(34), - [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2333), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1568), - [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1652), - [2239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1641), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1641), - [2245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2691), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2693), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(16), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2364), - [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1602), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1591), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1590), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1590), - [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2721), - [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2723), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(63), - [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2379), - [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1627), - [2324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1640), - [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1631), - [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1631), - [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2648), - [2336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2650), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1911), - [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(970), - [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), - [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(293), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(462), - [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(410), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(399), - [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1858), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(456), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(411), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(457), - [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(588), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(15), - [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2357), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1707), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1714), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1715), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1715), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2724), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2726), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(117), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2375), - [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1681), - [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1697), - [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1753), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1753), - [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2528), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2512), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [2590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(45), - [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2340), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1767), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1792), - [2602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1680), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1680), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2679), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2681), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(69), - [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2337), - [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1801), - [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1786), - [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1784), - [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1784), - [2736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2623), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2625), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(48), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2365), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1919), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1928), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1931), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1931), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2670), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2672), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(87), - [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2338), - [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1905), - [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1901), - [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1929), - [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1929), - [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2593), - [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2590), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [2820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(52), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2386), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1842), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1852), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1854), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1854), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2658), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2660), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(49), - [2847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2378), - [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1889), - [2853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1892), - [2856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1893), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1893), - [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2667), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2669), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(50), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2388), - [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1868), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1871), - [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1872), - [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1872), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2664), - [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2666), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(112), - [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2376), - [2920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1986), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1996), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1960), - [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1960), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2555), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2550), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2416), - [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2181), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2871), - [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2469), - [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2805), - [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2805), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2384), - [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), - [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2371), - [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2435), - [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2362), - [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(107), - [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2329), - [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1947), - [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1951), - [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1998), - [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1998), - [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2562), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2557), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(106), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2351), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1995), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1987), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1952), - [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1952), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2569), - [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2564), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(104), - [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2382), - [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1939), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1961), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1985), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1985), - [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2576), - [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2571), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor, 1), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2416), - [3076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), - [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2897), - [3081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2463), - [3084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2805), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2805), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2384), - [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2286), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2371), - [3099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2435), - [3102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2362), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sources, 1), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(2768), - [3114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1415), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1415), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_type, 1), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_any_type, 1), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 1), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 1), - [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_type, 3), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_any_type, 3), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, .production_id = 12), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, .production_id = 12), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2), - [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(2758), - [3149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(1379), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [3156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_or_operator, 3), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name_or_operator, 3), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(2519), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1484), - [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1484), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 1, .production_id = 3), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 1, .production_id = 3), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2, .production_id = 3), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2, .production_id = 3), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_abstract_type, 5, .production_id = 4), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_abstract_type, 5, .production_id = 4), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 2, .production_id = 4), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 2, .production_id = 4), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_abstract_type, 1, .production_id = 3), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_abstract_type, 1, .production_id = 3), - [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1924), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 4), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_repeat1, 4), - [3226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_repeat1, 2), - [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2219), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 3, .production_id = 4), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 3, .production_id = 4), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 1), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 1), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_symbol, 1), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_symbol, 1), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 4, .production_id = 4), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 4, .production_id = 4), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 1, .production_id = 3), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 1, .production_id = 3), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_scoped_any_type, 1, .production_id = 3), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_scoped_any_type, 1, .production_id = 3), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor, 1), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 2), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 2), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor, 2), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor, 2), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [3377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2190), - [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2225), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2254), - [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2263), - [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2), SHIFT_REPEAT(2149), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 5, .production_id = 4), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 5, .production_id = 4), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_scoped_any_type, 2, .production_id = 4), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_scoped_any_type, 2, .production_id = 4), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 4), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 4), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 2, .production_id = 24), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 2, .production_id = 24), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_definition_statement, 4, .production_id = 5), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_definition_statement, 4, .production_id = 5), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 4), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 4), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 4, .production_id = 24), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 4, .production_id = 24), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), - [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(289), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 5), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 5), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2230), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_typeclass_definition_statement_repeat1, 2), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_typeclass_definition_statement_repeat1, 2), - [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_typeclass_definition_statement_repeat1, 2), SHIFT_REPEAT(2335), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2265), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2262), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_condition_repeat1, 2), - [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(315), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2248), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2186), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(467), - [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2215), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(305), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2231), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_any_type, 1), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_any_type, 1), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_expression, 1), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_expression, 1), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 1), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 1), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 33), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 33), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2266), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 14), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 14), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 8), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 8), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_expression_repeat1, 2), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(502), - [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(460), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(984), - [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1099), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_definition_statement, 2, .production_id = 5), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_definition_statement, 2, .production_id = 5), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type_definition_statement, 2, .production_id = 4), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type_definition_statement, 2, .production_id = 4), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1096), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_statement, 2), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_statement, 2), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 1), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 2, .production_id = 1), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 1), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_source_statement, 1), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_definition_statement, 4, .production_id = 6), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_definition_statement, 4, .production_id = 6), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2196), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_statement, 5, .production_id = 15), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_statement, 5, .production_id = 15), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_definition_statement, 5, .production_id = 13), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_definition_statement, 5, .production_id = 13), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_statement, 4, .production_id = 9), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_statement, 4, .production_id = 9), - [3701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2192), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 12), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 12), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1097), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1120), - [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1121), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 5, .production_id = 10), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 5, .production_id = 10), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 8, .production_id = 28), - [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 8, .production_id = 28), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_statement, 4, .production_id = 9), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_statement, 4, .production_id = 9), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partition, 5, .production_id = 11), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_partition, 5, .production_id = 11), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(165), - [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(2346), - [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(2019), - [3846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(2698), - [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(2698), - [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(2771), - [3855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(2595), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 4, .production_id = 29), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [3978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2), - [3980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 1), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), SHIFT_REPEAT(2175), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), - [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), SHIFT_REPEAT(2634), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_name_expression_repeat1, 2), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), SHIFT_REPEAT(2052), - [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), - [4077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), SHIFT_REPEAT(2289), - [4080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), SHIFT_REPEAT(2634), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_typeclass, 2, .production_id = 22), - [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(1388), - [4090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(212), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), - [4095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2753), - [4098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2346), - [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2019), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_typeclass, 1, .production_id = 22), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 2), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 2), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_name_expression_repeat2, 2), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_name, 1, .production_id = 2), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_reference_expression_repeat1, 2), - [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_reference_expression_repeat1, 2), SHIFT_REPEAT(2168), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_name, 1), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_name, 3), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_name, 3, .production_id = 8), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 2), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2234), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 1, .production_id = 2), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [4424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_name, 1), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [4430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_name, 1), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_expression, 2, .production_id = 23), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2250), - [4451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_usage, 1), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), SHIFT_REPEAT(2118), - [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_expression, 1, .production_id = 19), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [4470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2240), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), - [4477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), SHIFT_REPEAT(2120), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_usage, 3), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2206), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(507), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2241), - [4555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(452), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [4574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alias_definition_statement_repeat1, 2), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alias_definition_statement_repeat1, 2), SHIFT_REPEAT(2399), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2213), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), SHIFT_REPEAT(2087), - [4597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), SHIFT_REPEAT(2090), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_any_name, 1), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(979), - [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(947), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2227), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constructor_repeat1, 2), SHIFT_REPEAT(2430), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_repeat1, 2), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(341), - [4653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2201), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2208), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partition_name, 1), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5307] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_loop, 6, .production_id = 32), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_loop, 6, .production_id = 32), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 7), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 7), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_loop, 2, .production_id = 16), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_loop, 2, .production_id = 16), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(110), + [2204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2511), + [2207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1522), + [2210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1556), + [2213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1652), + [2216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1652), + [2219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2842), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2840), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_superexpression, 1), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_superexpression, 1), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_control, 1), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_control, 1), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(44), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2516), + [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1551), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1693), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1759), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1759), + [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2752), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2750), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(54), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2490), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1566), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1677), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1774), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1774), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2887), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2885), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(74), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2476), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1562), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1686), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1702), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1702), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2680), + [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2678), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(99), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2539), + [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1550), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1635), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1700), + [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1700), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2827), + [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2825), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1820), + [2520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1193), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(482), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(344), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(425), + [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(251), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1778), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(374), + [2543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(327), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(375), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(557), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(67), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2522), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1637), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1739), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1838), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1838), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2892), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2890), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(14), + [2613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2509), + [2616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1674), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1696), + [2622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1843), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1843), + [2628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2802), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2800), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(131), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2537), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1639), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1748), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1780), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1780), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2735), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2751), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [2862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(57), + [2865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2500), + [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1631), + [2871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1757), + [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1800), + [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1800), + [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2724), + [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2721), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(23), + [2941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2486), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1726), + [2947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1835), + [2950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1882), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1882), + [2956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2777), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2775), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(22), + [2965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2493), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1701), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1805), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1874), + [2977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1874), + [2980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2782), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2780), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(27), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2533), + [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1732), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1796), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1889), + [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1889), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2767), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2765), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(21), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2518), + [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1734), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1810), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1867), + [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1867), + [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2787), + [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2785), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(141), + [3089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2491), + [3092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1764), + [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1813), + [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1902), + [3101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1902), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2684), + [3107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2683), + [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(127), + [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2495), + [3116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1829), + [3119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1870), + [3122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1925), + [3125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1925), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2663), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2659), + [3134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(153), + [3137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2541), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1826), + [3143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1885), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1931), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1931), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2655), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2652), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(152), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2552), + [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1783), + [3167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1904), + [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1907), + [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1907), + [3176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2904), + [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2705), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2602), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2508), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3138), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2612), + [3200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3134), + [3203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3134), + [3206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2514), + [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2435), + [3212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2536), + [3215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2577), + [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2543), + [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(53), + [3224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2526), + [3227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1852), + [3230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1862), + [3233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1919), + [3236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(1919), + [3239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2669), + [3242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_function_call_expression_repeat1, 2), SHIFT_REPEAT(2666), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor, 1), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2602), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), + [3260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(3135), + [3263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2641), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(3134), + [3269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(3134), + [3272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2514), + [3275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2452), + [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2536), + [3281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2577), + [3284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sources_repeat1, 2), SHIFT_REPEAT(2543), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sources, 1), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 1), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 1), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_type, 3), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_any_type, 3), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), + [3307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(3112), + [3310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1484), + [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1484), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, .production_id = 12), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, .production_id = 12), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_type, 1), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_any_type, 1), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__name_or_operator, 3), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__name_or_operator, 3), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(2943), + [3457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1528), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_statement_repeat1, 2), SHIFT_REPEAT(1528), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), + [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_declaration_repeat1, 2), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(3080), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2), SHIFT_REPEAT(1463), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 1, .production_id = 3), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 1, .production_id = 3), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2, .production_id = 3), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2, .production_id = 3), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 3, .production_id = 4), + [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 3, .production_id = 4), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_type_repeat1, 2), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 1), + [3527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 1), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [3533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1812), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 4), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_repeat1, 4), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_abstract_type, 1, .production_id = 3), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_abstract_type, 1, .production_id = 3), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor, 2, .production_id = 4), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor, 2, .production_id = 4), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_constructor_repeat1, 2), + [3566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2389), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_abstract_type, 5, .production_id = 4), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_abstract_type, 5, .production_id = 4), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 1, .production_id = 3), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 1, .production_id = 3), + [3583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2402), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2348), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2), + [3595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 4), + [3603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_type_repeat1, 4), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2396), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 5, .production_id = 4), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 5, .production_id = 4), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_symbol, 1), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_symbol, 1), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_type, 4, .production_id = 4), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_annotated_type, 4, .production_id = 4), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_scoped_any_type, 1, .production_id = 3), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_scoped_any_type, 1, .production_id = 3), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor, 1), + [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2408), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 1), + [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 1), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_type, 2), + [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_type, 2), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor, 2), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor, 2), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_type_repeat1, 2), SHIFT_REPEAT(2049), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_scoped_any_type, 2, .production_id = 4), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_scoped_any_type, 2, .production_id = 4), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), + [3666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(291), + [3669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2398), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2375), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 5), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 5), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2406), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_condition_repeat1, 2), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(311), + [3695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 4, .production_id = 25), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 4, .production_id = 25), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition, 4), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition, 4), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [3717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2409), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_typeclass_definition_statement_repeat1, 2), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_typeclass_definition_statement_repeat1, 2), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_typeclass_definition_statement_repeat1, 2), SHIFT_REPEAT(2525), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 2, .production_id = 25), + [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 2, .production_id = 25), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2337), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_definition_statement, 4, .production_id = 5), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_definition_statement, 4, .production_id = 5), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(316), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(478), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_expression, 1), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_expression, 1), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2374), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 1), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 1), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(391), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_expression_repeat1, 2), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1158), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), + [3819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1191), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 34), + [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 34), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 14), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 14), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2393), + [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_definition_statement, 2, .production_id = 5), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typeclass_definition_statement, 2, .production_id = 5), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_any_type, 1), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_any_type, 1), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2401), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 8), + [3866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 8), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(353), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1109), + [3880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1108), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 8, .production_id = 29), + [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 8, .production_id = 29), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2371), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_statement, 1), + [3906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_source_statement, 1), + [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 2, .production_id = 1), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 2, .production_id = 1), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_statement, 5, .production_id = 15), + [3918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_statement, 5, .production_id = 15), + [3920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition_statement, 4, .production_id = 9), + [3922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition_statement, 4, .production_id = 9), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type_definition_statement, 2, .production_id = 4), + [3928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type_definition_statement, 2, .production_id = 4), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_statement, 2), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declaration_statement, 2), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1060), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(1059), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_definition_statement, 5, .production_id = 13), + [3952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_definition_statement, 5, .production_id = 13), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_statement, 4, .production_id = 9), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_statement, 4, .production_id = 9), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace, 5, .production_id = 10), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace, 5, .production_id = 10), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_definition_statement, 4, .production_id = 6), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_definition_statement, 4, .production_id = 6), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 12), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 12), + [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2330), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partition, 5, .production_id = 11), + [3981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_partition, 5, .production_id = 11), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 4, .production_id = 30), + [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 2), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_statement, 1), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [4217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), SHIFT_REPEAT(2028), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), SHIFT_REPEAT(2416), + [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_annotated_abstract_type_repeat1, 2), SHIFT_REPEAT(3026), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), + [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(3092), + [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(2534), + [4248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2), SHIFT_REPEAT(1910), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_typeclass, 2, .production_id = 23), + [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), SHIFT_REPEAT(2310), + [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), + [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat1, 2), SHIFT_REPEAT(3026), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(1471), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), SHIFT_REPEAT(170), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parametrized_typeclass, 1, .production_id = 23), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 2), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 2), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(3092), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(2534), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), SHIFT_REPEAT(1910), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_name, 1, .production_id = 2), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_reference_expression_repeat1, 2), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_reference_expression_repeat1, 2), SHIFT_REPEAT(2307), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 1, .production_id = 2), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_name, 3), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotated_name, 3, .production_id = 8), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 2, .production_id = 2), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_any_name, 1), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2325), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_expression, 1, .production_id = 19), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_usage, 1), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), + [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_expression, 2, .production_id = 24), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typeclass_usage, 3), + [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2342), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_name, 1), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_name, 1), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), SHIFT_REPEAT(2086), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [4896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), SHIFT_REPEAT(2084), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [4903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2390), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2384), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constructor_repeat1, 2), SHIFT_REPEAT(2483), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_repeat1, 2), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2387), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(427), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [4962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_name_expression_repeat2, 2), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_condition_repeat1, 2), SHIFT_REPEAT(289), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_any_name, 1), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), SHIFT_REPEAT(268), + [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_expression_repeat1, 2), + [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2366), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [5005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_name_repeat1, 2), SHIFT_REPEAT(2114), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_type_repeat1, 2), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2355), + [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [5041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2338), + [5044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_expression_repeat1, 2), SHIFT_REPEAT(990), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_alias_definition_statement_repeat1, 2), + [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_alias_definition_statement_repeat1, 2), SHIFT_REPEAT(2593), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_constructor_repeat1, 2), SHIFT_REPEAT(2344), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1150), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_name_repeat1, 2), SHIFT_REPEAT(2134), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [5245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_partition_name, 1), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5885] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), }; #ifdef __cplusplus diff --git a/src/print_visitor.cpp b/src/print_visitor.cpp index 9948889..d4a5242 100644 --- a/src/print_visitor.cpp +++ b/src/print_visitor.cpp @@ -389,10 +389,10 @@ void PrintVisitor::Visit(ReferenceExpression* node) { out_ << "[ReferenceExpression "; for (auto& reference : node->references) { switch (reference) { - case ReferenceType::Reference: + case utils::ReferenceType::Reference: out_ << '~'; break; - case ReferenceType::UniqueReference: + case utils::ReferenceType::UniqueReference: out_ << '@'; break; } @@ -402,6 +402,14 @@ void PrintVisitor::Visit(ReferenceExpression* node) { out_ << ')'; } +void PrintVisitor::Visit(AccessExpression* node) { + out_ << "[AccessExpression] ("; + Visit(node->name.get()); + out_ << ") : ("; + Visitor::Visit(node->id); + out_ << ')'; +} + // Other Expressions void PrintVisitor::Visit(FunctionCallExpression* node) { @@ -499,7 +507,7 @@ void PrintVisitor::Visit(NameExpression* node) { out_ << '.'; } for (size_t i = 0; i < node->expressions.size(); ++i) { - Visitor::Visit(node->expressions[i]); + Visit(&node->expressions[i]); if (i + 1 < node->expressions.size()) { out_ << '.'; } @@ -619,10 +627,10 @@ void PrintVisitor::Visit(ExtendedScopedAnyType* node) { out_ << "[ExtendedScopedAnyType "; for (auto& reference : node->references) { switch (reference) { - case ReferenceType::Reference: + case utils::ReferenceType::Reference: out_ << '~'; break; - case ReferenceType::UniqueReference: + case utils::ReferenceType::UniqueReference: out_ << '@'; break; } diff --git a/src/type_check_visitor.cpp b/src/type_check_visitor.cpp index 61fc635..6519636 100644 --- a/src/type_check_visitor.cpp +++ b/src/type_check_visitor.cpp @@ -1,4 +1,5 @@ #include "../include/type_check_visitor.hpp" +#include // TODO @@ -32,75 +33,36 @@ void TypeCheckVisitor::Visit(Partition* node) { void TypeCheckVisitor::Visit(Namespace* node) { if (node->name.has_value()) { - if (node->modifier.has_value()) { - switch (node->modifier.value()) { // TODO - case Namespace::Const: - // TODO - break; - case Namespace::Var: - // TODO - break; - } - } else { - // error - } - Visit(&node->name.value()); + // TODO: add modifiers + node->variable_type_ = info::type::Type {info::type::DefinedType {node->type_id_.value()}}; context_manager_.EnterVariableContext(node->name.value().name, - global_info_.FindType(std::nullopt, node->type).value()); // TODO ?? + &node->variable_type_.value()); } - // global_info_.FindType(std::nullopt, node->type); // ?? - global_info_.EnterNamespace(node->type); + namespace_visitor_.EnterNamespace(node->type); Visit(node->scope.get()); - global_info_.ExitNamespace(); + namespace_visitor_.ExitNamespace(); } // Definitions ----------------- -void TypeCheckVisitor::Visit(ImportStatement* node) { // TODO - // if (node->name.has_value()) { - // } - // if (!node->symbols.empty()) { - // for (auto& symbol : node->symbols) { - // Visit(&symbol); - // } - // } -} +void TypeCheckVisitor::Visit(ImportStatement* node) {} void TypeCheckVisitor::Visit(AliasDefinitionStatement* node) { - switch (node->modifier) { - case AliasDefinitionStatement::Alias: - break; - case AliasDefinitionStatement::Type: - break; - case AliasDefinitionStatement::Let: - break; - } - - - Visit(&node->type); + // TODO check, that all paramaters used Visit(node->value.get()); } void TypeCheckVisitor::Visit(VariableDefinitionStatement* node) { - switch (node->modifier) { - case VariableDefinitionStatement::Const: - break; - case VariableDefinitionStatement::Var: - break; - } - Visitor::Visit(node->name); + // TODO: add modifiers Visitor::Visit(node->value); + Visitor::Visit(node->name); } void TypeCheckVisitor::Visit(FunctionDeclaration* node) { - Visit(&node->name); - for (auto& parameter : node->parameters) { - Visit(parameter.get()); - } - Visit(node->type.get()); + // later check, that function definition requirements are satisfied } void TypeCheckVisitor::Visit(FunctionDefinitionStatement* node) { @@ -304,6 +266,11 @@ void TypeCheckVisitor::Visit(ReferenceExpression* node) { out_ << ')'; } +void TypeCheckVisitor::Visit(AccessExpression* node) { // TODO + Visitor::Visit(node->name); + Visitor::Visit(node->id); +} + // Other Expressions void TypeCheckVisitor::Visit(FunctionCallExpression* node) { @@ -315,6 +282,7 @@ void TypeCheckVisitor::Visit(FunctionCallExpression* node) { out_ << ", "; } out_ << ")"; + } void TypeCheckVisitor::Visit(TupleExpression* node) { @@ -336,9 +304,7 @@ void TypeCheckVisitor::Visit(VariantExpression* node) { } void TypeCheckVisitor::Visit(ReturnExpression* node) { - out_ << "[Return] ("; Visitor::Visit(node->expression); - out_ << ")\n"; } void TypeCheckVisitor::Visit(TypeConstructor* node) { @@ -410,31 +376,48 @@ void TypeCheckVisitor::Visit(NameExpression* node) { } void TypeCheckVisitor::Visit(TupleName* node) { - out_ << "[TupleName] ("; + utils::IdType type = current_type_; + + auto type_value = std::get_if(context_manager_.GetType(type)); + + if (type_value = nullptr) { + error_handling::HandleTypecheckError("Mismatched types in tuple variable definition"); + } + + if (type_value->constructors.size() != node->names.size()) { + error_handling::HandleTypecheckError("Mismatched field count in tuple variable definition"); + } for (auto& name : node->names) { - out_ << "& "; + current_type_ = type_value->fields[i]; Visitor::Visit(name); } - out_ << ')'; + current_type_ = type; } -void TypeCheckVisitor::Visit(VariantName* node) { - out_ << "[VariantName] ("; - for (auto& name : node->names) { - out_ << "| "; +void TypeCheckVisitor::Visit(VariantName* node) { // TODO + utils::IdType type = current_type_; + + auto type_value = std::get_if(context_manager_.GetType(type)); + + if (type_value = nullptr) { + error_handling::HandleTypecheckError("Mismatched types in variant variable definition"); + } + + if (type_value->constructors.size() != node->names.size()) { + error_handling::HandleTypecheckError("Mismatched variant count in variant variable definition"); + } + for (size_t i = 0; i < node->names.size(); ++i) { + current_type_ = info::type::VariantType::MakeOptional(type_value->constructors[i]); Visitor::Visit(name); } - out_ << ')'; + + current_type_ = type; } void TypeCheckVisitor::Visit(AnnotatedName* node) { - out_ << "[AnnotatedName "; - Visit(&node->name); - out_ << ']'; + context_manager_.DefineVariable(node->name, current_type_); if (node->type.has_value()) { - out_ << " : ("; - Visitor::Visit(node->type.value()); - out_ << ')'; + // TODO: ?? check, that types are equal, add type requirement ?? } } @@ -443,135 +426,104 @@ void TypeCheckVisitor::Visit(AnnotatedName* node) { // Type void TypeCheckVisitor::Visit(FunctionType* node) { - out_ << "[FunctionType] ("; - bool is_first = true; + info::type::FunctionType type; + + type.argument_type_ids.reserve(node->types.size()); for (auto& type : node->types) { - if (!is_first) { - out_ << " -> "; - } - is_first = false; Visitor::Visit(type); + type.argument_types.push_back(current_type_); } - out_ << ')'; + + current_type_ = context_manager_.AddType(std::move(type)); } void TypeCheckVisitor::Visit(TupleType* node) { - out_ << "[TupleType "; - if (node->type.has_value()) { - Visit(&node->type.value()); - } - out_ << "] ("; + info::type::TupleType type; + + type.type = node->type; + + type.fields.reserve(node->entities.size()); for (auto& entity : node->entities) { - out_ << "& "; - if (entity.first.has_value()) { - Visit(&entity.first.value()); - out_ << " : "; - } Visit(entity.second.get()); + type.fields.emplace_back(entity.first, current_type_); } - out_ << ')'; + + current_type_ = context_manager_.AddType(std::move(type)); } void TypeCheckVisitor::Visit(VariantType* node) { - out_ << "[VariantType "; - if (node->type.has_value()) { - Visit(&node->type.value()); - } - out_ << "] ("; + info::type::VariantType type; + + type.type = node->type; + + type.constructors.reserve(node->constructors.size()); for (auto& constructor : node->constructors) { - out_ << "| "; if (std::holds_alternative(constructor)) { - Visit(&std::get(constructor)); + type.constructors.emplace_back(std::get(constructor)); } else if (std::holds_alternative>(constructor)) { Visit(std::get>(constructor).get()); + type.constructors.emplace_back(context_manager_.GetType(current_type_)); } else { // error } } - out_ << ')'; + + current_type_ = context_manager_.AddType(std::move(type)); } void TypeCheckVisitor::Visit(ParametrizedType* node) { - out_ << "[ParametrizedType] ("; + info::type::DefinedType type; + Visit(node->type_expression.get()); - for (auto& parameter : node->parameters) { - out_ << ' '; - Visitor::Visit(parameter); + type.type = current_type_; + + type.paramaters.reserve(node->parameters.size()); + for (auto& paramater : node->parameters) { + Visitor::Visit(paramater); + type.paramaters.push_back(current_type_); } - out_ << ')'; + + current_type_ = context_manager_.AddType(std::move(type)); } void TypeCheckVisitor::Visit(TypeExpression* node) { - out_ << "[TypeExpression "; - - if (node->array_size.has_value()) { - out_ << "[array size: " << node->array_size.value() << ']'; - } - - out_ << "] ("; - for (auto& type_namespace : node->namespaces) { - Visitor::Visit(type_namespace); - out_ << '.'; - } - Visit(&node->type); - out_ << ')'; + current_type_ = context_manager_.AddType(info::type::DefinedType {node->type_id_, {}}); } void TypeCheckVisitor::Visit(ExtendedScopedAnyType* node) { - out_ << "[ExtendedScopedAnyType "; - for (auto& reference : node->references) { - switch (reference) { - case ReferenceType::Reference: - out_ << '~'; - break; - case ReferenceType::UniqueReference: - out_ << '@'; - break; - } - } - out_ << "] ("; + info::type::ReferenceToType type; + + type.references = node->references; Visitor::Visit(node->type); - out_ << ')'; + type.type = current_type_; + + current_type_ = context_manager_.AddType(std::move(type)); } // Typeclass -void TypeCheckVisitor::Visit(ParametrizedTypeclass* node) { - out_ << "[ParametrizedTypeclass] ("; - Visit(node->typeclass_expression.get()); - for (auto& paramater : node->parameters) { - out_ << ' '; - Visitor::Visit(paramater); - } - out_ << ')'; -} +void TypeCheckVisitor::Visit(ParametrizedTypeclass* node) {} -void TypeCheckVisitor::Visit(TypeclassExpression* node) { - out_ << "[TypeclassExpression] ("; - for (auto& typeclass_namespace : node->namespaces) { - Visitor::Visit(typeclass_namespace); - out_ << '.'; - } - Visit(&node->typeclass); - out_ << ')'; -} +void TypeCheckVisitor::Visit(TypeclassExpression* node) {} // Identifiers, constants, etc. ----------------- +// TODO don't make dublicates of the same types + void TypeCheckVisitor::Visit(FloatNumberLiteral* node) { - current_type_ = info::BuiltInTypeInfo::FloatT; + current_type_ = context_manager_.AddType(info::type::InternalType::Float); } void TypeCheckVisitor::Visit(NumberLiteral* node) { - out_ << "[Number " << node->value << "] "; + current_type_ = context_manager_.AddType(info::type::InternalType::Int); } void TypeCheckVisitor::Visit(StringLiteral* node) { - out_ << "[String " << node->value << "] "; + current_type_ = context_manager_.AddType(info::type::InternalType::String); } void TypeCheckVisitor::Visit(CharLiteral* node) { - out_ << "[Char " << node->value << "] "; + current_type_ = context_manager_.AddType(info::type::InternalType::Char); } } // namespace interpreter diff --git a/src/visitor.cpp b/src/visitor.cpp index 3e2cc13..2b06376 100644 --- a/src/visitor.cpp +++ b/src/visitor.cpp @@ -97,6 +97,12 @@ void Visitor::Visit(SubExpressionToken& node) { case 1: Visit(std::get>(node).get()); break; + case 2: + Visit(std::get>(node).get()); + break; + case 3: + Visit(*std::get>(node)); + break; default: // error break; @@ -313,23 +319,4 @@ void Visitor::Visit(Literal& node) { } } -// - -void Visitor::Visit(NameSubExpression& node) { - switch (node.index()) { - case 0: - Visit(std::get>(node).get()); - break; - case 1: - Visit(*std::get>(node)); - break; - case 2: - Visit(*std::get>(node)); - break; - default: - // error - break; - } -} - } // namespace interpreter